12 lines
299 B
Python
Executable File
12 lines
299 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 plot-dataframe`.")
|
|
print("Please check the documentation on https://www.freqtrade.io/en/latest/plotting/ "
|
|
"for details.")
|
|
|
|
sys.exit(1)
|