From f2574b8b6ed72484eae68373f0d53b49d5f39288 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 5 Feb 2022 19:53:05 +0100 Subject: [PATCH] Revert removal of limit parameter for now --- src/components/charts/CandleChartContainer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/charts/CandleChartContainer.vue b/src/components/charts/CandleChartContainer.vue index 57b4cb7f..8e5bc9ad 100644 --- a/src/components/charts/CandleChartContainer.vue +++ b/src/components/charts/CandleChartContainer.vue @@ -198,7 +198,7 @@ export default class CandleChartContainer extends Vue { strategy: this.strategy, }); } else { - this.getPairCandles({ pair: this.pair, timeframe: this.timeframe }); + this.getPairCandles({ pair: this.pair, timeframe: this.timeframe, limit: 500 }); } } }