You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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)
|