Skip to content

Commit

Permalink
Update comment as to why certain points have not been removed
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Sep 20, 2019
1 parent 9cedbc1 commit 508a35f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion freqtrade/data/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,12 @@ def load_data(datadir: Path,
fill_up_missing: bool = True,
) -> Dict[str, DataFrame]:
"""
Loads ticker history data for a list of pairs the given parameters
Loads ticker history data for a list of pairs
:return: dict(<pair>:<tickerlist>)
TODO: refresh_pairs is still used by edge to keep the data uptodate.
This should be replaced in the future. Instead, writing the current candles to disk
from dataprovider should be implemented, as this would avoid loading ohlcv data twice.
exchange and refresh_pairs are then not needed here nor in load_pair_history.
"""
result: Dict[str, DataFrame] = {}

Expand Down

0 comments on commit 508a35f

Please sign in to comment.