2018-01-12 09:55:49 +00:00
|
|
|
#!/usr/bin/env python3
|
2018-03-05 04:21:49 +00:00
|
|
|
"""
|
|
|
|
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-05 04:21:49 +00:00
|
|
|
"""
|
2019-03-23 18:18:10 +00:00
|
|
|
import json
|
2018-03-25 19:37:14 +00:00
|
|
|
import logging
|
2018-01-12 09:55:49 +00:00
|
|
|
import sys
|
2018-03-18 01:46:18 +00:00
|
|
|
from argparse import Namespace
|
2018-12-15 12:54:35 +00:00
|
|
|
from pathlib import Path
|
2018-03-18 01:46:18 +00:00
|
|
|
from typing import List, Optional
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2019-03-23 18:18:10 +00:00
|
|
|
import numpy as np
|
|
|
|
import plotly.graph_objs as go
|
2018-01-28 09:51:26 +00:00
|
|
|
from plotly import tools
|
|
|
|
from plotly.offline import plot
|
|
|
|
|
2019-06-22 18:27:29 +00:00
|
|
|
from freqtrade.arguments import Arguments, ARGS_PLOT_PROFIT
|
2018-03-05 04:21:49 +00:00
|
|
|
from freqtrade.configuration import Configuration
|
2018-12-15 12:54:35 +00:00
|
|
|
from freqtrade.data import history
|
2019-04-09 09:27:35 +00:00
|
|
|
from freqtrade.exchange import timeframe_to_seconds
|
|
|
|
from freqtrade.misc import common_datearray
|
2018-11-24 19:00:02 +00:00
|
|
|
from freqtrade.resolvers import StrategyResolver
|
2018-12-25 13:23:59 +00:00
|
|
|
from freqtrade.state import RunMode
|
2018-03-05 04:21:49 +00:00
|
|
|
|
2019-04-09 09:27:35 +00:00
|
|
|
|
2018-03-25 19:37:14 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2018-05-14 05:08:40 +00:00
|
|
|
|
2018-01-12 21:15:50 +00:00
|
|
|
# data:: [ pair, profit-%, enter, exit, time, duration]
|
2018-02-03 16:15:40 +00:00
|
|
|
# data:: ["ETH/BTC", 0.0023975, "1515598200", "1515602100", "2018-01-10 07:30:00+00:00", 65]
|
2018-05-14 05:08:40 +00:00
|
|
|
def make_profit_array(data: List, px: int, min_date: int,
|
2019-03-23 18:28:06 +00:00
|
|
|
interval: str,
|
2018-05-14 05:08:40 +00:00
|
|
|
filter_pairs: Optional[List] = None) -> np.ndarray:
|
2018-01-12 18:18:31 +00:00
|
|
|
pg = np.zeros(px)
|
2018-03-18 01:46:18 +00:00
|
|
|
filter_pairs = filter_pairs or []
|
2018-01-12 09:55:49 +00:00
|
|
|
# Go through the trades
|
|
|
|
# and make an total profit
|
|
|
|
# array
|
|
|
|
for trade in data:
|
|
|
|
pair = trade[0]
|
2018-01-12 18:18:31 +00:00
|
|
|
if filter_pairs and pair not in filter_pairs:
|
2018-01-12 09:55:49 +00:00
|
|
|
continue
|
|
|
|
profit = trade[1]
|
2018-03-05 04:21:49 +00:00
|
|
|
trade_sell_time = int(trade[3])
|
|
|
|
|
|
|
|
ix = define_index(min_date, trade_sell_time, interval)
|
2018-01-20 18:49:04 +00:00
|
|
|
if ix < px:
|
2018-03-05 04:21:49 +00:00
|
|
|
logger.debug('[%s]: Add profit %s on %s', pair, profit, trade[4])
|
2018-01-20 18:49:04 +00:00
|
|
|
pg[ix] += profit
|
2018-01-12 09:55:49 +00:00
|
|
|
|
|
|
|
# rewrite the pg array to go from
|
|
|
|
# total profits at each timeframe
|
|
|
|
# to accumulated profits
|
|
|
|
pa = 0
|
2018-01-23 05:20:17 +00:00
|
|
|
for x in range(0, len(pg)):
|
2018-01-12 09:55:49 +00:00
|
|
|
p = pg[x] # Get current total percent
|
|
|
|
pa += p # Add to the accumulated percent
|
|
|
|
pg[x] = pa # write back to save memory
|
|
|
|
|
|
|
|
return pg
|
|
|
|
|
|
|
|
|
2018-03-18 01:46:18 +00:00
|
|
|
def plot_profit(args: Namespace) -> 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-04-07 13:14:40 +00:00
|
|
|
# We need to use the same pairs, same ticker_interval
|
2018-01-12 09:55:49 +00:00
|
|
|
# and same timeperiod as used in backtesting
|
|
|
|
# to match the tickerdata against the profits-results
|
2018-03-05 04:21:49 +00:00
|
|
|
timerange = Arguments.parse_timerange(args.timerange)
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2018-12-25 13:23:59 +00:00
|
|
|
config = Configuration(args, RunMode.OTHER).get_config()
|
2018-01-23 05:17:54 +00:00
|
|
|
|
|
|
|
# Init strategy
|
2018-03-05 04:21:49 +00:00
|
|
|
try:
|
2018-07-17 08:47:09 +00:00
|
|
|
strategy = StrategyResolver({'strategy': config.get('strategy')}).strategy
|
|
|
|
|
2018-03-05 04:21:49 +00:00
|
|
|
except AttributeError:
|
|
|
|
logger.critical(
|
|
|
|
'Impossible to load the strategy. Please check the file "user_data/strategies/%s.py"',
|
|
|
|
config.get('strategy')
|
|
|
|
)
|
2018-06-08 00:01:46 +00:00
|
|
|
exit(1)
|
2018-06-03 20:58:00 +00:00
|
|
|
|
|
|
|
# Load the profits results
|
|
|
|
try:
|
|
|
|
filename = args.exportfilename
|
|
|
|
with open(filename) as file:
|
|
|
|
data = json.load(file)
|
|
|
|
except FileNotFoundError:
|
|
|
|
logger.critical(
|
|
|
|
'File "backtest-result.json" not found. This script require backtesting '
|
|
|
|
'results to run.\nPlease run a backtesting with the parameter --export.')
|
2018-06-08 00:01:46 +00:00
|
|
|
exit(1)
|
2018-01-23 05:17:54 +00:00
|
|
|
|
2018-03-05 04:21:49 +00:00
|
|
|
# Take pairs from the cli otherwise switch to the pair in the config file
|
2019-01-23 18:11:05 +00:00
|
|
|
if args.pairs:
|
|
|
|
filter_pairs = args.pairs
|
2018-03-05 04:21:49 +00:00
|
|
|
filter_pairs = filter_pairs.split(',')
|
|
|
|
else:
|
|
|
|
filter_pairs = config['exchange']['pair_whitelist']
|
|
|
|
|
2019-04-07 13:14:40 +00:00
|
|
|
ticker_interval = strategy.ticker_interval
|
2018-01-12 09:55:49 +00:00
|
|
|
pairs = config['exchange']['pair_whitelist']
|
2018-01-23 05:17:54 +00:00
|
|
|
|
2018-01-12 18:18:31 +00:00
|
|
|
if filter_pairs:
|
|
|
|
pairs = list(set(pairs) & set(filter_pairs))
|
2018-03-05 04:21:49 +00:00
|
|
|
logger.info('Filter, keep pairs %s' % pairs)
|
|
|
|
|
2018-12-13 05:34:37 +00:00
|
|
|
tickers = history.load_data(
|
2019-03-23 18:28:06 +00:00
|
|
|
datadir=Path(str(config.get('datadir'))),
|
2018-03-05 04:21:49 +00:00
|
|
|
pairs=pairs,
|
2019-04-07 13:14:40 +00:00
|
|
|
ticker_interval=ticker_interval,
|
2018-03-05 04:21:49 +00:00
|
|
|
refresh_pairs=False,
|
|
|
|
timerange=timerange
|
|
|
|
)
|
2018-07-17 08:47:09 +00:00
|
|
|
dataframes = strategy.tickerdata_to_dataframe(tickers)
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2018-01-21 12:44:30 +00:00
|
|
|
# NOTE: the dataframes are of unequal length,
|
|
|
|
# 'dates' is an merged date array of them all.
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2019-04-04 18:30:08 +00:00
|
|
|
dates = common_datearray(dataframes)
|
2018-03-05 04:21:49 +00:00
|
|
|
min_date = int(min(dates).timestamp())
|
|
|
|
max_date = int(max(dates).timestamp())
|
2019-04-07 13:14:40 +00:00
|
|
|
num_iterations = define_index(min_date, max_date, ticker_interval) + 1
|
2018-01-12 09:55:49 +00:00
|
|
|
|
2018-01-21 12:44:30 +00:00
|
|
|
# Make an average close price of all the pairs that was involved.
|
|
|
|
# this could be useful to gauge the overall market trend
|
2018-01-12 09:55:49 +00:00
|
|
|
# We are essentially saying:
|
|
|
|
# array <- sum dataframes[*]['close'] / num_items dataframes
|
|
|
|
# FIX: there should be some onliner numpy/panda for this
|
2018-03-05 04:21:49 +00:00
|
|
|
avgclose = np.zeros(num_iterations)
|
2018-01-12 09:55:49 +00:00
|
|
|
num = 0
|
|
|
|
for pair, pair_data in dataframes.items():
|
2018-01-12 18:18:31 +00:00
|
|
|
close = pair_data['close']
|
|
|
|
maxprice = max(close) # Normalize price to [0,1]
|
2018-03-05 04:21:49 +00:00
|
|
|
logger.info('Pair %s has length %s' % (pair, len(close)))
|
2018-01-12 18:18:31 +00:00
|
|
|
for x in range(0, len(close)):
|
|
|
|
avgclose[x] += close[x] / maxprice
|
|
|
|
# avgclose += close
|
|
|
|
num += 1
|
2018-01-12 09:55:49 +00:00
|
|
|
avgclose /= num
|
|
|
|
|
2018-06-03 20:58:00 +00:00
|
|
|
# make an profits-growth array
|
2019-04-07 13:14:40 +00:00
|
|
|
pg = make_profit_array(data, num_iterations, min_date, ticker_interval, filter_pairs)
|
2018-01-12 09:55:49 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Plot the pairs average close prices, and total profit growth
|
|
|
|
#
|
|
|
|
|
2018-01-28 09:51:26 +00:00
|
|
|
avgclose = go.Scattergl(
|
|
|
|
x=dates,
|
|
|
|
y=avgclose,
|
|
|
|
name='Avg close price',
|
|
|
|
)
|
2018-03-05 04:21:49 +00:00
|
|
|
|
2018-01-28 09:51:26 +00:00
|
|
|
profit = go.Scattergl(
|
|
|
|
x=dates,
|
|
|
|
y=pg,
|
|
|
|
name='Profit',
|
|
|
|
)
|
|
|
|
|
|
|
|
fig = tools.make_subplots(rows=3, cols=1, shared_xaxes=True, row_width=[1, 1, 1])
|
2018-01-21 12:44:30 +00:00
|
|
|
|
2018-01-28 09:51:26 +00:00
|
|
|
fig.append_trace(avgclose, 1, 1)
|
|
|
|
fig.append_trace(profit, 2, 1)
|
2018-01-12 09:55:49 +00:00
|
|
|
|
|
|
|
for pair in pairs:
|
2019-04-07 13:14:40 +00:00
|
|
|
pg = make_profit_array(data, num_iterations, min_date, ticker_interval, [pair])
|
2018-01-28 09:51:26 +00:00
|
|
|
pair_profit = go.Scattergl(
|
|
|
|
x=dates,
|
|
|
|
y=pg,
|
|
|
|
name=pair,
|
|
|
|
)
|
|
|
|
fig.append_trace(pair_profit, 3, 1)
|
|
|
|
|
2018-12-15 12:54:35 +00:00
|
|
|
plot(fig, filename=str(Path('user_data').joinpath('freqtrade-profit-plot.html')))
|
2018-01-12 09:55:49 +00:00
|
|
|
|
|
|
|
|
2019-04-07 13:14:40 +00:00
|
|
|
def define_index(min_date: int, max_date: int, ticker_interval: str) -> int:
|
2018-03-05 04:21:49 +00:00
|
|
|
"""
|
|
|
|
Return the index of a specific date
|
|
|
|
"""
|
2019-04-07 13:14:40 +00:00
|
|
|
interval_seconds = timeframe_to_seconds(ticker_interval)
|
2019-04-04 17:56:40 +00:00
|
|
|
return int((max_date - min_date) / interval_seconds)
|
2018-03-05 04:21:49 +00:00
|
|
|
|
2018-03-05 04:24:01 +00:00
|
|
|
|
2018-03-18 01:46:18 +00:00
|
|
|
def plot_parse_args(args: List[str]) -> Namespace:
|
2018-03-05 04:21:49 +00:00
|
|
|
"""
|
|
|
|
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)
|
2018-03-05 04:21:49 +00:00
|
|
|
|
|
|
|
return arguments.parse_args()
|
|
|
|
|
|
|
|
|
2018-03-18 01:46:18 +00:00
|
|
|
def main(sysargv: List[str]) -> None:
|
2018-03-05 04:21:49 +00:00
|
|
|
"""
|
|
|
|
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__':
|
2018-03-05 04:21:49 +00:00
|
|
|
main(sys.argv[1:])
|