mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
22 lines
469 B
Python
22 lines
469 B
Python
"""
|
|
Handle historic data (ohlcv).
|
|
|
|
Includes:
|
|
* load data for a pair (or a list of pairs) from disk
|
|
* download data from exchange and store to disk
|
|
"""
|
|
|
|
# flake8: noqa: F401
|
|
from .datahandlers import get_datahandler
|
|
from .history_utils import (
|
|
convert_trades_to_ohlcv,
|
|
download_data_main,
|
|
get_timerange,
|
|
load_data,
|
|
load_pair_history,
|
|
refresh_backtest_ohlcv_data,
|
|
refresh_backtest_trades_data,
|
|
refresh_data,
|
|
validate_backtest_data,
|
|
)
|