stable/scripts/download_backtest_data.py

12 lines
301 B
Python
Raw Normal View History

2019-08-20 23:26:58 +00:00
#!/usr/bin/env python3
2018-04-22 07:56:49 +00:00
import sys
2018-06-24 17:52:12 +00:00
print("This script has been integrated into freqtrade "
2019-08-20 23:26:58 +00:00
"and its functionality is available by calling `freqtrade download-data`.")
print("Please check the documentation on https://www.freqtrade.io/en/latest/backtesting/ "
"for details.")
2019-05-29 18:57:14 +00:00
sys.exit(1)