2019-08-20 23:26:58 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2018-04-22 07:56:49 +00:00
|
|
|
import sys
|
2018-04-27 21:16:34 +00:00
|
|
|
|
2018-06-24 17:52:12 +00:00
|
|
|
|
2019-08-17 04:47:53 +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`.")
|
2019-08-17 04:47:53 +00:00
|
|
|
print("Please check the documentation on https://www.freqtrade.io/en/latest/backtesting/ "
|
|
|
|
"for details.")
|
2019-05-29 18:57:14 +00:00
|
|
|
|
2019-08-17 04:47:53 +00:00
|
|
|
sys.exit(1)
|