10 lines
278 B
Python
Executable File
10 lines
278 B
Python
Executable File
import sys
|
|
|
|
|
|
print("This script has been integrated into freqtrade "
|
|
"and it's functionality is available by calling `freqtrade download-data`.")
|
|
print("Please check the documentation on https://www.freqtrade.io/en/latest/backtesting/ "
|
|
"for details.")
|
|
|
|
sys.exit(1)
|