2018-01-12 09:55:49 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-03-05 04:21:49 +00:00
|
|
|
|
2018-01-12 09:55:49 +00:00
|
|
|
import sys
|
|
|
|
|
2018-03-05 04:21:49 +00:00
|
|
|
|
2019-08-22 15:11:16 +00:00
|
|
|
print("This script has been integrated into freqtrade "
|
|
|
|
"and its functionality is available by calling `freqtrade plot-profit`.")
|
|
|
|
print("Please check the documentation on https://www.freqtrade.io/en/latest/plotting/ "
|
|
|
|
"for details.")
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2019-08-22 15:11:16 +00:00
|
|
|
sys.exit(1)
|