We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa855d commit 7d77e63Copy full SHA for 7d77e63
freqtrade/exchange/exchange.py
@@ -2813,8 +2813,6 @@ async def _async_get_candle_history(
2813
since_ms=since_ms,
2814
)
2815
# Some exchanges sort OHLCV in ASC order and others in DESC.
2816
- # Ex: Bittrex returns the list of OHLCV in ASC order (oldest first, newest last)
2817
- # while GDAX returns the list of OHLCV in DESC order (newest first, oldest last)
2818
# Only sort if necessary to save computing time
2819
try:
2820
if data and data[0][0] > data[-1][0]:
0 commit comments