12 lines
301 B
Python
Executable File
12 lines
301 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
|
|
print("This script has been integrated into freqtrade "
|
|
"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.")
|
|
|
|
sys.exit(1)
|