From 7965db29e6bd175ae13e5ddf7e3d4ac886a5d0bf Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 2 Sep 2023 09:09:49 +0200 Subject: [PATCH] Fully remove 500 candle limit --- src/stores/ftbot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/ftbot.ts b/src/stores/ftbot.ts index ce035738..0c5cefb6 100644 --- a/src/stores/ftbot.ts +++ b/src/stores/ftbot.ts @@ -1004,7 +1004,7 @@ export function createBotSubStore(botId: string, botName: string) { // TODO: check for active bot ... if (pair === this.selectedPair) { // Reload pair candles - this.getPairCandles({ pair, timeframe, limit: 500 }); + this.getPairCandles({ pair, timeframe }); } break; }