mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Merge pull request #315 from epigramx/master
Charting fix, mainly for the daily one. Negative values were off.
This commit is contained in:
commit
f28a4432aa
|
@ -84,12 +84,13 @@ export default class DailyChart extends Vue {
|
|||
show: false,
|
||||
pieces: [
|
||||
{
|
||||
max: -0.01,
|
||||
min: this.absoluteMin - 2,
|
||||
max: 0.0,
|
||||
min: this.absoluteMin,
|
||||
color: 'red',
|
||||
},
|
||||
{
|
||||
min: -0.00001,
|
||||
min: 0.0,
|
||||
max: this.absoluteMax,
|
||||
color: 'green',
|
||||
},
|
||||
],
|
||||
|
|
|
@ -111,12 +111,12 @@ export default class HourlyChart extends Vue {
|
|||
show: false,
|
||||
pieces: [
|
||||
{
|
||||
max: -0.001,
|
||||
max: 0.0,
|
||||
min: -2,
|
||||
color: 'red',
|
||||
},
|
||||
{
|
||||
min: -0.01,
|
||||
min: 0.0,
|
||||
max: 2,
|
||||
color: 'green',
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user