stable/scripts/plot_profit.py

64 lines
1.7 KiB
Python
Raw Normal View History

2018-01-12 09:55:49 +00:00
#!/usr/bin/env python3
"""
Script to display profits
2019-06-29 18:07:25 +00:00
Use `python plot_profit.py --help` to display the command line arguments
"""
2018-03-25 19:37:14 +00:00
import logging
2018-01-12 09:55:49 +00:00
import sys
2019-06-30 07:28:49 +00:00
from typing import Any, Dict, List
2018-01-12 09:55:49 +00:00
from freqtrade.arguments import ARGS_PLOT_PROFIT, Arguments
2019-06-30 07:28:49 +00:00
from freqtrade.optimize import setup_configuration
2019-06-30 08:31:36 +00:00
from freqtrade.plot.plotting import FTPlots, generate_profit_graph
from freqtrade.state import RunMode
2018-03-25 19:37:14 +00:00
logger = logging.getLogger(__name__)
2018-01-12 09:55:49 +00:00
2019-06-30 07:28:49 +00:00
def plot_profit(config: Dict[str, Any]) -> None:
2018-01-12 09:55:49 +00:00
"""
Plots the total profit for all pairs.
Note, the profit calculation isn't realistic.
But should be somewhat proportional, and therefor useful
in helping out to find a good algorithm.
"""
2019-06-30 07:42:10 +00:00
plot = FTPlots(config)
2018-01-12 09:55:49 +00:00
2019-06-30 07:42:10 +00:00
trades = plot.trades[plot.trades['pair'].isin(plot.pairs)]
2019-06-30 07:28:49 +00:00
# Create an average close price of all the pairs that were involved.
# this could be useful to gauge the overall market trend
2019-06-30 08:31:36 +00:00
generate_profit_graph(plot.pairs, plot.tickers, trades)
2018-03-05 04:24:01 +00:00
2019-06-30 07:28:49 +00:00
def plot_parse_args(args: List[str]) -> Dict[str, Any]:
"""
Parse args passed to the script
:param args: Cli arguments
:return: args: Array with all arguments
"""
arguments = Arguments(args, 'Graph profits')
2019-06-22 18:27:29 +00:00
arguments.build_args(optionlist=ARGS_PLOT_PROFIT)
2019-06-30 07:28:49 +00:00
parsed_args = arguments.parse_args()
# Load the configuration
config = setup_configuration(parsed_args, RunMode.OTHER)
return config
def main(sysargv: List[str]) -> None:
"""
This function will initiate the bot and start the trading loop.
:return: None
"""
logger.info('Starting Plot Dataframe')
plot_profit(
plot_parse_args(sysargv)
)
2018-01-12 09:55:49 +00:00
if __name__ == '__main__':
main(sys.argv[1:])