{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from freqtrade.arguments import Arguments\n", "from freqtrade.configuration import Configuration\n", "from freqtrade.analyze import Analyze\n", "from freqtrade import constants" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "from argparse import Namespace" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "from importlib import reload" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ], "text/vnd.plotly.v1+html": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import plotly.offline as py\n", "import plotly.graph_objs as go\n", "#needed to have the display in the jupyter notebook:\n", "py.init_notebook_mode(connected=True)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "from freqtrade import exchange\n", "import freqtrade.optimize as optimize\n", "from freqtrade.optimize import backtesting\n" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "argList = ['-s', 'BinHV45', 'backtesting', '--timerange=20180105-', '--ticker-interval', '5m', '--realistic-simulation']\n", "arguments = Arguments(\n", " argList,\n", " 'Fake command line for now '\n", " )\n", "args = arguments.get_parsed_arg()" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "args.config = \"..\\\\\" + args.config\n", "args.datadir = \"..\\\\\" + args.datadir" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "scrolled": true }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2018-05-13 21:55:40,532 - freqtrade.configuration - INFO - Log level set to INFO\n", "2018-05-13 21:55:40,532 - freqtrade.configuration - INFO - Parameter -i/--ticker-interval detected ...\n", "2018-05-13 21:55:40,548 - freqtrade.configuration - INFO - Using ticker_interval: 5m ...\n", "2018-05-13 21:55:40,549 - freqtrade.configuration - INFO - Parameter --realistic-simulation detected ...\n", "2018-05-13 21:55:40,551 - freqtrade.configuration - INFO - Using max_open_trades: 3 ...\n", "2018-05-13 21:55:40,554 - freqtrade.configuration - INFO - Parameter --timerange detected: 20180105- ...\n", "2018-05-13 21:55:40,556 - freqtrade.configuration - INFO - Parameter --datadir detected: ..\\freqtrade\\tests\\testdata ...\n" ] } ], "source": [ "configuration = Configuration(args)\n", "config = configuration.get_config()" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2018-05-13 21:55:40,829 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:55:40,844 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:55:41,318 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n" ] } ], "source": [ "exchange.init(config)\n", "analyze = Analyze(config)" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [], "source": [ "pairs = config['exchange']['pair_whitelist']\n", "ticker_interval = config['ticker_interval']" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "timerange = Arguments.parse_timerange(config.get('timerange'))\n", "data = optimize.load_data(\n", " config['datadir'],\n", " pairs=pairs,\n", " ticker_interval=ticker_interval,\n", " refresh_pairs=config.get('refresh_pairs', False),\n", " timerange=timerange\n", ")" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [], "source": [ "def CumulProfit( df ):\n", " #cumul Profit :\n", " curSum = 100\n", " df.loc[:, 'CumulPL'] = curSum\n", " columnIndex = df.columns.get_loc('CumulPL')\n", " for i in range(1, len(df)):\n", " curSum = curSum * ( 1.0 + df.iloc[i]['profit_percent'])\n", " df.iloc[i,columnIndex] = curSum" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "def GraphRoundTripList( roundTripList, curveNames=[] ):\n", " data = []\n", " index = 0\n", " line100 = go.Scatter( x= [ roundTripList[0].iloc[0, :]['sell_date'], roundTripList[0].iloc[-1, :]['sell_date']], \n", " y=[100.0,100.0],\n", " name=\"\",\n", " line = dict( color = ('rgb(200, 200, 200)'), width = 4)\n", " )\n", " data.append(line100)\n", " for rt in roundTripList:\n", " graphName = 'pair' + str(index)\n", " if index < len(curveNames):\n", " graphName = curveNames[index] \n", " graph = go.Scatter( x = rt['sell_date'], y=rt['CumulPL'], name=graphName)\n", " index += 1\n", " data.append(graph)\n", " fig = go.Figure(data=data)\n", " py.iplot(fig)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "sell_profit_only = config.get('experimental', {}).get('sell_profit_only', False)\n", "use_sell_signal = config.get('experimental', {}).get('use_sell_signal', False)\n", "max_open_trades = config['max_open_trades']" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "preprocessed = analyze.tickerdata_to_dataframe(data)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "min_date, max_date = backtesting.Backtesting.get_timeframe(preprocessed)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "def getCumulProfitForStrat( strat ):\n", " config['strategy'] = strat\n", " analyze = Analyze(config)\n", " preprocessed = analyze.tickerdata_to_dataframe(data)\n", " myBacktesting = backtesting.Backtesting(config)\n", " results = myBacktesting.backtest(\n", " {\n", " 'stake_amount': config.get('stake_amount'),\n", " 'processed': preprocessed,\n", " 'max_open_trades': max_open_trades,\n", " 'realistic': config.get('realistic_simulation', False),\n", " 'sell_profit_only': sell_profit_only,\n", " 'use_sell_signal': use_sell_signal,\n", " 'record': config.get('export')\n", " }\n", " )\n", " sortedResults = results.sort_values('sell_date') \n", " sortedResults = sortedResults.reset_index(drop=True)\n", " CumulProfit( sortedResults )\n", " return sortedResults" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#strat_list = [ \"BinHV45\", \"Quickie\", \"Strategy006\", \"ASDTSRockwellTrading\", \"AverageStrategy\", \"BinHV27\", \"ClucMay72018\", \"CofiBitStrategy\", \"EMASkipPump\", \"MACDStrategy\", \"ReinforcedQuickie\", \"Simple\", \"SmoothOperator\"]\n", "strat_list = [ \"BinHV45\", \"Quickie\", \"Strategy006\", \"ASDTSRockwellTrading\", \"AverageStrategy\", \"BinHV27\", \"ClucMay72018\", \"CofiBitStrategy\"]" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "strat_list = [ \"BinHV27\", \"BinHV45\", \"Quickie\", \"Strategy006\", \"ASDTSRockwellTrading\", \"AverageStrategy\", \"ClucMay72018\", \"CofiBitStrategy\", \"EMASkipPump\", \"MACDStrategy\",\"ReinforcedQuickie\", \"Simple\"]" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "scrolled": false }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2018-05-13 21:55:49,741 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:55:50,656 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:55:50,656 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:55:50,656 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:05,580 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:06,553 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:06,553 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:06,569 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:10,612 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:11,564 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:11,565 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:11,570 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:22,626 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:23,588 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:23,590 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:23,594 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:31,484 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:32,101 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:32,101 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:32,116 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:42,549 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:43,172 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:43,172 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:43,172 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:56:57,067 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:58,114 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:56:58,114 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:56:58,130 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:57:01,873 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:02,545 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:02,545 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:57:02,545 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:57:14,072 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:14,957 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:14,957 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:57:14,967 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:57:26,355 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:26,994 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:26,994 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:57:27,009 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:57:38,340 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "d:\\work\\finances\\freqtrade\\myfreqtrade\\freqtrade\\user_data\\strategies\\ReinforcedQuickie.py:188: FutureWarning:\n", "\n", "how in .resample() is deprecated\n", "the new syntax is .resample(...)..apply()\n", "\n", "2018-05-13 21:57:40,765 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:40,765 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:57:40,765 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n", "2018-05-13 21:57:49,061 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:49,916 - freqtrade.strategy.resolver - INFO - Override strategy 'ticker_interval' with value in config file: 5m.\n", "2018-05-13 21:57:49,932 - freqtrade.exchange - INFO - Instance is running with dry_run enabled\n", "2018-05-13 21:57:49,932 - freqtrade.exchange - INFO - Using Exchange \"Binance\"\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "data": [ { "line": { "color": "rgb(200, 200, 200)", "width": 4 }, "name": "", "type": "scatter", "x": [ "2018-01-30 06:50:00", "2018-03-16 20:10:00" ], "y": [ 100, 100 ] }, { "name": "BinHV27", "type": "scatter", "x": [ "2018-01-30 06:50:00", "2018-02-01 09:05:00", "2018-02-01 12:20:00", "2018-03-16 20:10:00" ], "y": [ 100, 49.917893, 24.872442285683512, 49.84308296330628 ] }, { "name": "BinHV45", "type": "scatter", "x": [ "2018-01-05 04:20:00", "2018-01-05 04:35:00", "2018-01-05 05:40:00", "2018-01-05 09:40:00", "2018-01-05 10:00:00", "2018-01-05 10:45:00", "2018-01-05 15:10:00", "2018-01-05 17:10:00", "2018-01-05 17:30:00", "2018-01-05 17:50:00", "2018-01-05 19:10:00", "2018-01-05 19:30:00", "2018-01-05 20:50:00", "2018-01-05 23:05:00", "2018-01-05 23:25:00", "2018-01-06 00:20:00", "2018-01-06 00:25:00", "2018-01-06 06:35:00", "2018-01-06 10:15:00", "2018-01-06 16:45:00", "2018-01-06 17:20:00", "2018-01-06 20:25:00", "2018-01-06 22:25:00", "2018-01-07 04:10:00", "2018-01-07 04:25:00", "2018-01-07 04:35:00", "2018-01-07 06:05:00", "2018-01-07 07:50:00", "2018-01-07 08:25:00", "2018-01-07 16:25:00", "2018-01-07 17:10:00", "2018-01-07 18:05:00", "2018-01-08 00:35:00", "2018-01-08 01:00:00", "2018-01-08 01:10:00", "2018-01-08 01:10:00", "2018-01-08 01:25:00", "2018-01-08 01:30:00", "2018-01-08 03:20:00", "2018-01-08 04:00:00", "2018-01-08 04:10:00", "2018-01-08 04:10:00", "2018-01-08 05:45:00", "2018-01-08 06:55:00", "2018-01-08 07:15:00", "2018-01-08 09:00:00", "2018-01-08 13:35:00", "2018-01-08 15:10:00", "2018-01-08 15:10:00", "2018-01-08 18:05:00", "2018-01-08 19:40:00", "2018-01-08 20:20:00", "2018-01-09 01:00:00", "2018-01-09 03:45:00", "2018-01-09 06:45:00", "2018-01-09 21:35:00", "2018-01-09 22:30:00", "2018-01-09 22:35:00", "2018-01-09 22:45:00", "2018-01-09 23:30:00", "2018-01-09 23:35:00", "2018-01-09 23:35:00", "2018-01-09 23:40:00", "2018-01-10 02:35:00", "2018-01-10 03:50:00", "2018-01-10 03:50:00", "2018-01-10 03:55:00", "2018-01-10 04:40:00", "2018-01-10 04:40:00", "2018-01-10 04:55:00", "2018-01-10 05:10:00", "2018-01-10 05:40:00", "2018-01-10 06:55:00", "2018-01-10 07:25:00", "2018-01-10 07:35:00", "2018-01-10 09:10:00", "2018-01-10 09:40:00", "2018-01-11 00:35:00", "2018-01-11 04:15:00", "2018-01-11 04:15:00", "2018-01-11 04:25:00", "2018-01-11 04:30:00", "2018-01-11 04:40:00", "2018-01-11 04:40:00", "2018-01-11 04:40:00", "2018-01-11 04:45:00", "2018-01-11 05:05:00", "2018-01-11 05:10:00", "2018-01-13 02:25:00", "2018-01-13 03:05:00", "2018-01-13 12:20:00", "2018-01-13 19:00:00", "2018-01-13 21:25:00", "2018-01-14 02:15:00", "2018-01-14 11:40:00", "2018-01-14 11:50:00", "2018-01-14 12:50:00", "2018-01-15 00:30:00", "2018-01-15 00:50:00", "2018-01-15 15:45:00", "2018-01-15 16:00:00", "2018-01-15 21:20:00", "2018-01-16 02:55:00", "2018-01-16 08:50:00", "2018-01-16 09:30:00", "2018-01-16 10:15:00", "2018-01-16 10:15:00", "2018-01-16 10:20:00", "2018-01-16 20:40:00", "2018-01-16 21:45:00", "2018-01-16 22:05:00", "2018-01-16 22:05:00", "2018-01-16 22:35:00", "2018-01-16 22:35:00", "2018-01-16 22:40:00", "2018-01-16 23:30:00", "2018-01-17 00:25:00", "2018-01-17 08:50:00", "2018-01-17 15:20:00", "2018-01-17 15:25:00", "2018-01-17 15:50:00", "2018-01-17 16:05:00", "2018-01-17 16:10:00", "2018-01-17 16:15:00", "2018-01-17 18:00:00", "2018-01-17 20:40:00", "2018-01-17 23:50:00", "2018-01-18 00:40:00", "2018-01-18 04:30:00", "2018-01-18 07:00:00", "2018-01-18 13:10:00", "2018-01-18 15:25:00", "2018-01-18 17:00:00", "2018-01-18 21:40:00", "2018-01-18 22:45:00", "2018-01-18 23:55:00", "2018-01-19 02:45:00", "2018-01-20 05:40:00", "2018-01-20 05:45:00", "2018-01-21 04:30:00", "2018-01-22 15:00:00", "2018-01-23 03:45:00", "2018-01-24 16:40:00", "2018-01-26 12:20:00", "2018-01-28 00:55:00", "2018-01-29 12:45:00", "2018-01-29 17:40:00", "2018-01-31 20:05:00", "2018-02-01 11:30:00", "2018-02-01 13:20:00", "2018-02-01 13:25:00", "2018-02-01 15:50:00", "2018-02-02", "2018-02-02 11:10:00", "2018-02-02 12:40:00", "2018-02-02 12:50:00", "2018-02-02 13:05:00", "2018-02-02 14:25:00", "2018-02-05 11:30:00", "2018-02-10 13:35:00", "2018-02-11 18:20:00", "2018-02-13 15:45:00", "2018-02-15 05:35:00", "2018-02-15 10:15:00", "2018-02-20 23:05:00", "2018-02-21 08:50:00", "2018-02-21 15:55:00", "2018-03-01 08:15:00", "2018-03-05 15:00:00", "2018-03-05 19:45:00", "2018-03-07 17:00:00", "2018-03-09 05:00:00", "2018-03-13 10:25:00", "2018-03-15 07:35:00", "2018-03-16 12:10:00", "2018-03-18 22:00:00", "2018-03-19 01:45:00", "2018-04-20 22:55:00", "2018-04-25 04:35:00", "2018-04-29 09:15:00", "2018-04-29 13:50:00", "2018-05-04 08:30:00", "2018-05-09 06:00:00", "2018-05-11 08:05:00", "2018-05-12 00:40:00" ], "y": [ 100, 101.601731, 104.77669771626132, 107.54716648543051, 101.91896299910503, 106.02826730152374, 107.95550176523929, 110.24277117446468, 104.24230233897474, 108.96441713197191, 100.58049547295464, 102.20428006733444, 104.54411828208318, 108.71092693180506, 111.09034712900836, 113.64086041061204, 115.22084565797611, 117.26777278630148, 119.16723981688443, 120.67296913388388, 123.00329811485493, 126.64274184007091, 128.22894344804521, 131.80676434692276, 134.06112529513328, 137.7084914751454, 140.49348046504042, 142.40539161368812, 126.54482450840543, 129.74058624109244, 131.43671995498053, 133.09614534669373, 135.89952682978642, 128.7111893078883, 131.06536587058153, 134.3793470933509, 136.8524659410504, 140.9743924204372, 132.7865588260844, 135.01793868510322, 136.9285356798751, 138.88905517588847, 143.22901453863642, 134.51929683637587, 137.41997140907583, 139.7844812761275, 143.46537989269294, 145.99368032511845, 149.51986130620062, 152.67122712941105, 156.9804992322572, 163.19616878604327, 166.28890264463095, 169.8715272107704, 173.53075186171614, 176.64771990319386, 167.5252818849075, 157.3374747787356, 148.91390801316194, 152.15438931523752, 157.1073022592443, 159.1453028973703, 164.0311193971756, 167.47707367129308, 158.30690837168984, 150.30513054727257, 153.2180154193039, 143.95592663218096, 136.349270996429, 128.04821420827147, 130.68388694253457, 133.59635247945747, 138.34450712274747, 140.82969326257373, 145.72354763619907, 148.00665383196352, 150.3172597082612, 152.50107937951097, 143.3848820564489, 145.42315407498532, 138.00807107564805, 141.82110987220423, 143.73280028662649, 153.12661699276728, 155.50077168846397, 167.1225697028238, 171.67033079551112, 174.32200737618777, 178.1054503869988, 181.533741645645, 172.45624673821243, 175.85367963757938, 180.82099918239732, 183.6432479130062, 187.33074372882757, 190.4182278883645, 194.03748239146898, 197.49015042639596, 200.79922231558498, 203.566516718005, 207.22311895219036, 211.28938568729757, 214.48335225050886, 217.82570638396717, 221.29930539770334, 227.46739947162308, 233.10754007913377, 240.1986061782298, 243.72160874299013, 248.1521726867911, 234.48904061626445, 238.28936697928575, 242.1379070585581, 251.22700377650818, 259.1241311954298, 263.62335531020227, 268.8408358569557, 273.6011763417996, 279.4793963830679, 283.0886240506925, 288.7356051510997, 298.20535918863396, 303.3672164227958, 309.9950225825763, 323.0337728266257, 327.94176384170294, 333.6622356757815, 339.1962941208753, 347.26117106429973, 353.5386980689218, 359.83911474259503, 365.5135616786169, 371.2828204258809, 376.0643676645946, 381.9375642085275, 390.3556094405822, 397.2802993529168, 404.67817896406024, 410.4348434164959, 415.73242854918345, 421.8345366634555, 428.5500285918128, 436.53706975268875, 414.2403626861381, 419.5415664459813, 397.8423018574491, 405.15197782216654, 415.6920875556058, 422.84012916100994, 432.2782802579935, 438.7233721825453, 444.23174154581466, 451.7782037747202, 458.7772330276749, 469.8894828385931, 444.60211718152385, 450.7073623325124, 459.77457135693004, 466.551138188957, 472.8911202678523, 480.4186767828552, 488.5398422417294, 497.5469389489765, 505.0055357485565, 514.7885130871882, 523.5463681097393, 530.5006240464137, 540.961677257116, 556.9254942202908, 528.2407737469825, 535.6290450234411, 545.0789875760761, 557.1173404577673, 565.2349468038956, 572.6054522444333, 585.6317739246869, 598.7772512391712, 607.3024860602292, 615.659010779592, 624.3428749700481, 635.5620229921086, 603.6392552148297, 612.6851214558144, 623.7323488511647, 632.5251411968605 ] }, { "name": "Quickie", "type": "scatter", "x": [ "2018-01-05 21:00:00", "2018-01-06 01:55:00", "2018-01-06 04:10:00", "2018-01-06 04:50:00", "2018-01-06 05:55:00", "2018-01-06 09:25:00", "2018-01-06 10:00:00", "2018-01-06 13:55:00", "2018-01-06 17:40:00", "2018-01-06 18:15:00", "2018-01-06 21:05:00", "2018-01-06 21:10:00", "2018-01-06 21:40:00", "2018-01-06 21:45:00", "2018-01-07", "2018-01-07 01:15:00", "2018-01-07 09:10:00", "2018-01-07 12:00:00", "2018-01-09 08:15:00", "2018-01-09 21:25:00", "2018-01-09 21:30:00", "2018-01-09 22:40:00", "2018-01-10 00:35:00", "2018-01-10 07:10:00", "2018-01-10 07:20:00", "2018-01-10 09:45:00", "2018-01-10 18:25:00", "2018-01-10 21:55:00", "2018-01-11 03:40:00", "2018-01-11 03:50:00", "2018-01-11 07:40:00", "2018-01-11 12:00:00", "2018-01-11 14:50:00", "2018-01-11 19:25:00", "2018-01-11 20:15:00", "2018-01-12 06:45:00", "2018-01-12 10:50:00", "2018-01-12 23:10:00", "2018-01-13 01:10:00", "2018-01-13 16:50:00", "2018-01-13 22:30:00", "2018-01-14 00:30:00", "2018-01-14 14:55:00", "2018-01-14 23:05:00", "2018-01-15 01:50:00", "2018-01-15 02:10:00", "2018-01-15 05:10:00", "2018-01-15 06:05:00", "2018-01-15 07:20:00", "2018-01-15 08:30:00", "2018-01-16 05:20:00", "2018-01-16 07:10:00", "2018-01-16 09:45:00", "2018-01-16 17:15:00", "2018-01-17 00:25:00", "2018-01-17 00:50:00", "2018-01-17 10:30:00", "2018-01-17 16:20:00", "2018-01-17 18:10:00", "2018-01-17 18:55:00", "2018-01-17 21:25:00", "2018-01-17 21:35:00", "2018-01-17 22:05:00", "2018-01-17 23:10:00", "2018-01-18 02:25:00", "2018-01-18 07:50:00", "2018-01-18 10:20:00", "2018-01-18 10:55:00", "2018-01-18 12:55:00", "2018-01-18 17:20:00", "2018-01-18 17:30:00", "2018-01-19 00:10:00", "2018-01-19 00:55:00", "2018-01-19 05:05:00", "2018-01-19 08:15:00", "2018-01-19 09:10:00", "2018-01-19 19:30:00", "2018-01-19 21:40:00", "2018-01-20 06:00:00", "2018-01-20 15:15:00", "2018-01-22 07:25:00", "2018-01-23 16:30:00", "2018-01-23 17:15:00", "2018-01-24 01:30:00", "2018-01-30 09:45:00", "2018-02-01 03:10:00", "2018-02-01 09:30:00", "2018-02-01 16:15:00", "2018-02-01 20:45:00", "2018-02-02 03:30:00", "2018-02-02 05:55:00", "2018-02-02 13:25:00", "2018-02-02 15:25:00", "2018-02-02 16:05:00", "2018-02-03 06:40:00", "2018-02-03 07:50:00", "2018-02-03 17:10:00", "2018-02-03 20:10:00", "2018-02-04 11:45:00", "2018-02-04 17:45:00", "2018-02-04 21:10:00", "2018-02-05 05:05:00", "2018-02-05 10:20:00", "2018-02-05 13:00:00", "2018-02-05 14:35:00", "2018-02-05 16:20:00", "2018-02-05 19:55:00", "2018-02-05 20:00:00", "2018-02-06 03:40:00", "2018-02-06 05:40:00", "2018-02-06 18:15:00", "2018-02-06 18:55:00", "2018-02-06 23:15:00", "2018-02-07 13:10:00", "2018-02-07 13:25:00", "2018-02-07 22:25:00", "2018-02-09 13:08:16.611000", "2018-02-09 14:18:16.801000", "2018-02-09 16:13:15.341000", "2018-02-10 03:03:16.690000", "2018-02-10 07:55:00", "2018-02-10 13:00:00", "2018-02-10 13:25:00", "2018-02-10 13:40:00", "2018-02-10 17:40:00", "2018-02-10 22:25:00", "2018-02-10 22:30:00", "2018-02-11 13:05:00", "2018-02-11 15:00:00", "2018-02-11 19:45:00", "2018-02-11 23:10:00", "2018-02-12 01:40:00", "2018-02-12 18:20:00", "2018-02-13 14:15:00", "2018-02-13 14:55:00", "2018-02-14 02:05:00", "2018-02-14 04:20:00", "2018-02-14 12:05:00", "2018-02-14 13:15:00", "2018-02-14 14:25:00", "2018-02-14 22:35:00", "2018-02-15 15:10:00", "2018-02-15 18:10:00", "2018-02-15 23:45:00", "2018-02-16 12:40:00", "2018-02-17 07:25:00", "2018-02-17 15:25:00", "2018-02-18 00:15:00", "2018-02-18 14:35:00", "2018-02-18 20:45:00", "2018-02-19 01:50:00", "2018-02-19 08:50:00", "2018-02-19 20:40:00", "2018-02-19 22:05:00", "2018-02-20 16:35:00", "2018-02-20 16:50:00", "2018-02-21 01:40:00", "2018-02-21 07:05:00", "2018-02-21 08:50:00", "2018-02-21 09:25:00", "2018-02-21 12:30:00", "2018-02-21 22:45:00", "2018-02-21 23:50:00", "2018-02-23 09:25:00", "2018-02-23 14:25:00", "2018-02-24 22:35:00", "2018-02-25 21:00:00", "2018-02-25 23:05:00", "2018-02-26 10:40:00", "2018-02-26 13:20:00", "2018-02-27 09:00:00", "2018-03-03 00:05:00", "2018-03-03 09:00:00", "2018-03-04 00:05:00", "2018-03-05 11:10:00", "2018-03-05 19:45:00", "2018-03-05 20:50:00", "2018-03-05 21:40:00", "2018-03-07 11:50:00", "2018-03-07 15:35:00", "2018-03-08 09:25:00", "2018-03-08 15:25:00", "2018-03-08 15:55:00", "2018-03-08 16:25:00", "2018-03-09 07:15:00", "2018-03-10 15:20:00", "2018-03-10 22:00:00", "2018-03-14 18:05:00", "2018-03-16 13:25:00", "2018-03-17 19:55:00", "2018-03-18 20:20:00", "2018-03-18 23:20:00", "2018-03-18 23:55:00", "2018-03-19 08:10:00", "2018-03-19 12:10:00", "2018-03-19 12:45:00", "2018-03-20 01:35:00", "2018-03-21 01:05:00", "2018-03-21 09:20:00", "2018-03-22 10:00:00", "2018-03-23 08:00:00", "2018-03-23 15:25:00", "2018-03-23 21:30:00", "2018-03-24 01:15:00", "2018-03-26 09:15:00", "2018-03-27 09:00:00", "2018-03-27 12:50:00", "2018-03-27 17:15:00", "2018-03-27 17:50:00", "2018-03-28 11:40:00", "2018-03-29 07:55:00", "2018-03-29 11:25:00", "2018-03-29 13:25:00", "2018-03-29 19:45:00", "2018-03-29 21:00:00", "2018-03-30 03:00:00", "2018-03-30 04:40:00", "2018-03-30 06:45:00", "2018-03-30 09:40:00", "2018-03-30 11:30:00", "2018-03-30 12:35:00", "2018-03-30 15:00:00", "2018-04-01 00:10:00", "2018-04-02 02:45:00", "2018-04-02 17:05:00", "2018-04-03 02:00:00", "2018-04-03 05:05:00", "2018-04-03 14:10:00", "2018-04-04 02:05:00", "2018-04-04 10:55:00", "2018-04-04 13:35:00", "2018-04-05 05:20:00", "2018-04-17 09:30:00", "2018-04-22 17:00:00", "2018-04-22 23:10:00", "2018-04-24 00:05:00", "2018-04-25 10:20:00", "2018-04-25 23:05:00", "2018-04-26 16:50:00", "2018-05-04 07:25:00", "2018-05-04 08:50:00", "2018-05-04 13:35:00" ], "y": [ 100, 103.544664, 108.10802023411632, 109.7919940004585, 112.9282297570801, 114.14710931214017, 115.95006404519651, 120.27506172811566, 121.80223868865038, 123.75062992949756, 128.26082063778205, 132.1669628868431, 134.42107176054782, 138.03944102178045, 142.3728704015505, 143.99215536170607, 146.4116181102884, 149.19403182143722, 111.09887100242067, 83.0121654022665, 62.191003438649126, 46.27529888523204, 46.92541685724675, 34.77402056678329, 35.6593365292755, 36.807140323259915, 37.43497149403866, 37.85768868954821, 39.14035526161474, 40.91834190850043, 41.47977183905807, 42.11505611425459, 44.98557496049439, 45.55672576572106, 46.154245958595226, 46.858466520346546, 47.33345017773804, 47.95370108218409, 48.50797873151263, 50.114869557525914, 50.80995929024793, 51.388302635669994, 51.96492769624669, 52.526719490272264, 53.12572001712507, 54.02828190586841, 55.04599104081649, 55.72355324545772, 56.40285902259393, 57.03258791912374, 58.31911477925636, 59.27167062369449, 61.079281133572124, 61.80781342118498, 64.30555925517707, 65.33200459200822, 66.02181713573326, 67.23682389888204, 68.4173835173681, 76.0985019071354, 77.47024665364825, 78.315969194102, 79.98657020676444, 80.82079973912431, 82.97000180173904, 83.89873315450696, 84.77561922179258, 86.70390934924382, 87.75255931829827, 88.63412767188905, 89.72585194924925, 91.21362321817533, 92.18629063499714, 94.20727501291877, 97.04036003158203, 98.04761859023424, 99.72803221334762, 101.04587533038672, 102.08855256103968, 103.81111312611262, 105.58790988071182, 106.86151864084665, 108.44839723205061, 109.90949862931065, 82.42321690621407, 61.48544328278474, 46.007130378061454, 46.74096297051499, 48.06654836559954, 48.68081193644482, 49.58314973033637, 50.80332857043128, 51.565918030337166, 52.338136216571954, 53.37441247193104, 53.92354924346312, 54.48997946025221, 55.13327126586632, 56.190013984215454, 56.88714606881328, 57.79435041751691, 59.82006667327805, 60.448749253184864, 61.3289187070733, 62.1105060995708, 62.893609024785526, 64.03693433303658, 65.15016072428355, 66.11402738312539, 66.92567756257488, 67.81241066595376, 68.91458883272713, 69.60798330545593, 70.3490695722763, 72.63882344928676, 74.90855205867724, 75.92063326560131, 76.71605222191235, 77.51416383540041, 78.46394488487557, 79.49827857625257, 80.32584770640351, 81.13012873150883, 81.97220267665179, 83.4216827082579, 84.35919309708667, 85.58501568838851, 86.5582362799373, 87.77845206468739, 88.95034970017575, 89.95418641866813, 91.45730468197051, 92.50194282007064, 93.45536404479482, 94.49996885283464, 95.54969718684445, 97.91341992830718, 98.99143884864425, 101.12356793411455, 102.5413557497996, 104.0256428996915, 105.09047018554134, 106.20991279024234, 107.46641004572301, 108.92257345385796, 110.3039741886549, 112.18563865394177, 113.36015834483449, 114.92018456872543, 116.16957727892523, 117.36348571379817, 118.67771615864699, 119.88156392292572, 121.09624229069327, 122.57989407584007, 123.98978840471733, 127.1457860419366, 128.8906076637901, 132.22925849629308, 137.96847243972954, 139.50939677881297, 142.1355928135697, 149.27926943278666, 151.19234746065368, 152.75040879201129, 154.70845365464848, 156.63630973149887, 158.6908063926456, 160.87876540723258, 162.5633897025302, 164.35877716798458, 166.41233325549342, 169.07003972910695, 171.48332687849583, 173.3569914343022, 129.66466565770247, 131.2775086780124, 135.71361462130824, 137.141800916184, 102.52440855794644, 104.16392251118042, 105.323281551679, 106.76683086306534, 107.8916770802964, 109.51167708515769, 110.63573998249642, 111.93127896590445, 113.16581941069497, 114.46432476230827, 115.6894879391854, 117.05242001212254, 118.83355284333379, 120.04354697510837, 121.27563672776131, 122.67879584470151, 124.00973932760864, 125.51416596045632, 126.83564311191266, 128.14181685838204, 129.43303275028288, 131.04448565699684, 132.53694868325465, 133.924996218489, 135.9034648306249, 137.51325360285549, 139.19788996903304, 140.66330132359764, 142.6848931907252, 144.21321819182077, 145.71687750114833, 147.63716948490907, 149.22500871909097, 151.88033941573968, 153.7499165289913, 155.61807180226762, 157.98345093185492, 160.3357660623534, 162.03862970275287, 163.84363147175964, 165.8297292265335, 168.726479419203, 170.8568992497952, 172.60968088211203, 174.6513979446197, 176.40297157506436, 178.43424473663237, 181.54589707860882, 183.40169373226678, 185.66563174995196, 188.30369529848488, 190.82549604666124, 193.84017440750105, 196.49832991837377, 147.25314069384302, 148.82003633093228, 151.41189947747506, 152.94205904888048, 154.6098310259849, 156.22106955025262, 117.11078578862596, 87.7818076994805, 65.79514397153162 ] }, { "name": "Strategy006", "type": "scatter", "x": [ "2018-01-10 11:25:00", "2018-01-10 19:10:00", "2018-01-10 22:00:00", "2018-01-10 22:05:00", "2018-01-11 15:05:00", "2018-01-11 16:50:00", "2018-01-11 17:00:00", "2018-01-11 22:55:00", "2018-01-12 10:30:00", "2018-01-12 22:20:00", "2018-01-13 00:55:00", "2018-01-15 11:55:00", "2018-01-16 05:25:00", "2018-01-16 20:35:00", "2018-01-16 21:15:00", "2018-01-23 04:45:00", "2018-01-23 16:30:00", "2018-01-23 17:00:00", "2018-02-01 03:00:00", "2018-02-01 13:00:00", "2018-02-03 18:50:00", "2018-02-09 17:38:15.341000", "2018-02-15 03:15:00", "2018-02-15 23:40:00", "2018-02-16 01:55:00", "2018-02-17 12:30:00", "2018-02-19 22:05:00", "2018-02-21 17:00:00", "2018-02-25 17:40:00", "2018-02-26 20:10:00", "2018-03-01 14:10:00", "2018-03-01 17:40:00", "2018-03-02 23:45:00", "2018-03-04 07:40:00", "2018-03-07 14:20:00", "2018-03-11 20:30:00", "2018-03-11 23:35:00", "2018-03-14 00:45:00", "2018-03-16 23:10:00", "2018-03-18 00:35:00", "2018-03-19 00:25:00", "2018-03-19 01:20:00", "2018-03-20 12:30:00", "2018-03-21 02:20:00", "2018-03-25 09:20:00", "2018-03-25 17:55:00", "2018-03-27 13:55:00", "2018-03-29 15:40:00", "2018-03-29 15:55:00", "2018-03-29 21:10:00", "2018-03-31 07:30:00", "2018-03-31 14:15:00", "2018-03-31 21:25:00", "2018-04-01 20:35:00", "2018-04-02 03:35:00", "2018-04-02 10:15:00", "2018-04-02 19:00:00", "2018-04-02 22:45:00", "2018-04-05 22:10:00", "2018-04-06 12:10:00", "2018-04-06 15:55:00", "2018-04-07 06:15:00", "2018-04-18 20:50:00", "2018-04-20 01:15:00", "2018-04-22 10:40:00", "2018-04-23 17:05:00", "2018-04-26 06:55:00", "2018-04-26 19:25:00", "2018-05-01 14:10:00", "2018-05-02 02:45:00", "2018-05-02 05:35:00", "2018-05-02 17:45:00", "2018-05-02 21:55:00", "2018-05-07 09:15:00", "2018-05-07 09:15:00", "2018-05-07 09:20:00", "2018-05-07 13:55:00", "2018-05-08 04:40:00", "2018-05-11 07:50:00", "2018-05-11 18:20:00", "2018-05-12 10:15:00" ], "y": [ 100, 103.046855, 106.51553785646308, 108.78810011439964, 110.39448695830889, 121.20916475107856, 123.74607378141029, 125.40114039441451, 128.09184256758377, 130.47240256241537, 132.6716649508678, 134.26958105756916, 135.71470441805462, 137.55972139597128, 146.17072197704107, 147.6355192458741, 149.30639604578082, 150.83131153970706, 105.51086898849415, 73.45723041783003, 74.21871010551038, 74.96786189032179, 75.93383628499373, 76.7900973558162, 77.58342506641083, 79.01245667190231, 79.83658819997292, 80.82275528512722, 81.7310478748419, 82.60956346610189, 83.83848811509267, 84.89504924740503, 86.15445626663389, 87.05960446116133, 88.08618345789391, 88.97039256744425, 89.90789138800592, 91.36795778283275, 92.53701537106198, 93.4768490602751, 94.43513445656444, 95.54614870382441, 96.97540443305519, 97.97875269698945, 99.32744492467641, 100.3499693199046, 101.58451979996426, 102.80331563084626, 104.09404312761937, 105.22946243525948, 106.59676356000126, 107.70853049506484, 108.89461360162058, 110.05895510125613, 111.2387826975834, 112.43934728282795, 113.64596540153721, 114.854940273156, 116.00928181052554, 117.18352080045477, 118.4255489374188, 119.76253312023563, 121.03501722039012, 122.83372950445387, 124.16782664060175, 127.1303604748808, 134.0127252660499, 135.5751394261092, 137.64141029957185, 139.683280705357, 97.73172469112991, 98.71574047045154, 99.73079000762597, 101.70695261970339, 102.79684127276754, 103.9208651099173, 105.08084123756935, 106.15822354388561, 73.56174227235475, 74.6462608318238, 75.41496951879513 ] }, { "name": "ASDTSRockwellTrading", "type": "scatter", "x": [ "2018-01-05 10:45:00", "2018-01-05 16:20:00", "2018-01-05 16:20:00", "2018-01-05 17:30:00", "2018-01-06 02:05:00", "2018-01-06 02:45:00", "2018-01-06 03:50:00", "2018-01-06 05:05:00", "2018-01-06 12:05:00", "2018-01-06 20:50:00", "2018-01-07 02:50:00", "2018-01-08 03:30:00", "2018-01-08 08:05:00", "2018-01-08 08:05:00", "2018-01-08 09:40:00", "2018-01-08 14:05:00", "2018-01-09 22:40:00", "2018-01-10 06:55:00", "2018-01-10 08:20:00", "2018-01-10 18:55:00", "2018-01-10 18:55:00", "2018-01-10 20:55:00", "2018-01-10 22:05:00", "2018-01-10 23:15:00", "2018-01-28 04:25:00", "2018-01-28 20:20:00", "2018-01-31 00:55:00", "2018-01-31 07:15:00", "2018-01-31 07:35:00", "2018-01-31 08:20:00", "2018-01-31 11:45:00", "2018-01-31 12:05:00", "2018-01-31 12:55:00", "2018-01-31 23:55:00", "2018-02-01 12:25:00", "2018-02-02 18:50:00", "2018-02-03 15:20:00", "2018-02-03 18:55:00", "2018-02-03 20:05:00", "2018-02-04 00:55:00", "2018-02-04 01:10:00", "2018-02-04 02:40:00", "2018-02-04 04:00:00", "2018-02-04 05:10:00", "2018-02-04 05:20:00", "2018-02-04 06:15:00", "2018-02-04 10:45:00", "2018-02-04 17:15:00", "2018-02-05 15:50:00", "2018-02-05 16:45:00", "2018-02-05 19:25:00", "2018-02-06 05:05:00", "2018-02-06 05:15:00", "2018-02-06 06:15:00", "2018-02-07 18:50:00", "2018-02-07 21:35:00", "2018-02-09 09:58:15.341000", "2018-02-09 09:58:15.483000", "2018-02-09 11:03:15.428000", "2018-02-09 11:18:15.483000", "2018-02-09 13:38:15.341000", "2018-02-09 14:03:16.611000", "2018-02-09 14:03:16.690000", "2018-02-09 15:13:16.690000", "2018-02-09 16:03:15.341000", "2018-02-09 17:33:15.341000", "2018-02-09 18:28:15.428000", "2018-02-09 19:38:15.428000", "2018-02-09 22:28:15.428000", "2018-02-10 00:23:15.428000", "2018-02-10 00:23:15.990000", "2018-02-10 01:08:16.611000", "2018-02-10 01:18:15.483000", "2018-02-10 01:33:15.428000", "2018-02-10 01:33:16.690000", "2018-02-10 01:43:16.611000", "2018-02-10 02:58:16.611000", "2018-02-10 03:03:16.690000", "2018-02-10 03:53:15.483000", "2018-02-10 07:00:00", "2018-02-11 13:55:00", "2018-02-11 19:40:00", "2018-02-11 21:00:00", "2018-02-12 12:25:00", "2018-02-12 13:50:00", "2018-02-12 17:15:00", "2018-02-12 18:40:00", "2018-02-12 22:00:00", "2018-02-13 07:20:00", "2018-02-13 08:30:00", "2018-02-13 10:35:00", "2018-02-13 11:05:00", "2018-02-13 20:55:00", "2018-02-14", "2018-02-14 00:45:00", "2018-02-14 01:05:00", "2018-02-14 01:40:00", "2018-02-14 02:50:00", "2018-02-14 10:30:00", "2018-02-14 11:10:00", "2018-02-14 13:25:00", "2018-02-14 13:35:00", "2018-02-14 14:15:00", "2018-02-15 00:30:00", "2018-02-15 01:30:00", "2018-02-15 02:10:00", "2018-02-20 00:25:00", "2018-02-20 00:55:00", "2018-02-20 02:05:00", "2018-02-20 06:05:00", "2018-02-20 16:55:00", "2018-02-20 21:15:00", "2018-02-20 22:25:00", "2018-02-21 01:30:00", "2018-02-21 09:05:00", "2018-02-21 17:00:00", "2018-03-01 05:50:00", "2018-03-05 19:00:00", "2018-03-06 01:50:00", "2018-03-06 17:40:00", "2018-03-08 10:05:00", "2018-03-08 13:40:00", "2018-03-08 20:40:00", "2018-03-16 18:45:00", "2018-03-16 21:15:00", "2018-03-18 00:30:00", "2018-03-18 03:05:00", "2018-03-18 13:20:00", "2018-03-18 14:30:00", "2018-03-19 20:35:00", "2018-03-19 21:45:00", "2018-03-19 23:00:00", "2018-03-20", "2018-03-20 09:10:00", "2018-03-20 11:30:00", "2018-03-20 12:35:00", "2018-03-20 16:55:00", "2018-03-20 17:00:00", "2018-03-22 15:30:00", "2018-03-24 05:50:00", "2018-03-24 07:45:00", "2018-03-24 08:55:00", "2018-03-29 15:20:00", "2018-03-29 22:05:00", "2018-03-30 03:25:00", "2018-03-30 05:55:00", "2018-04-03 16:00:00", "2018-04-03 17:10:00", "2018-04-03 18:40:00", "2018-04-03 23:25:00", "2018-04-24 14:10:00", "2018-04-24 16:25:00", "2018-04-24 18:45:00", "2018-04-24 19:55:00", "2018-04-24 22:20:00", "2018-04-25 04:35:00", "2018-04-25 10:15:00", "2018-04-25 14:30:00", "2018-05-04 13:25:00", "2018-05-10 23:40:00" ], "y": [ 100, 101.37032800000001, 102.47201261507777, 103.89731735766354, 107.18951892558805, 111.32590457858628, 116.1274197877959, 120.19043601654079, 122.1164504946707, 124.10366248405103, 126.04324263495215, 87.4298347529781, 88.92857184338555, 89.89479500503543, 90.89810451945098, 92.10298980021183, 63.81151455979289, 64.49380896938115, 66.06634603496741, 66.76580695702611, 67.61657826407286, 68.3874376837435, 69.69495215005529, 71.60519739725243, 50.075740029433724, 50.82016598071129, 35.51866681159801, 35.98583992911761, 25.186047460275084, 26.03395614872369, 26.328228889334294, 26.67988925039878, 27.01962669133108, 27.323500220952468, 19.123497303997848, 19.491732292389628, 19.695782466479123, 19.97487406752303, 20.529833996253615, 20.7497573793584, 21.189424818459923, 21.59350439512273, 21.91024720279728, 22.260669836947574, 23.310523540877124, 23.57064077785983, 23.819513274164127, 24.148494814384318, 24.672405827295364, 24.93351019730476, 25.236991408692475, 25.68992600275213, 26.007627152045924, 26.56885276041925, 26.847901169945494, 27.210393208692736, 30.313604406905622, 31.28794124839194, 31.645486700043243, 32.03772681150267, 32.404920489430076, 33.44903359963431, 34.46450143801419, 34.838078022771484, 35.39639236440286, 35.76845163175141, 36.14120038915815, 37.10595359234634, 37.65449758337364, 38.07041824387529, 38.64850536237469, 39.04904996927917, 39.75557926901232, 40.77362742114782, 41.25133083227771, 43.20309258665632, 43.991002939272505, 44.60723330754613, 45.09406996077969, 45.75339712178675, 46.95077267514333, 47.59922622933017, 48.21797618696142, 49.33006980358036, 50.32363857871103, 50.91242414360917, 51.46506017921536, 52.229623054635375, 52.86357838482908, 53.51503740669669, 55.27102954002488, 58.29982005526516, 59.2277677971172, 59.97299170898158, 61.89617202222985, 62.71298547528293, 66.02381908406329, 68.35726789075638, 69.76827742380432, 72.72596749704553, 73.56227757849878, 75.37771440625357, 77.40750132910519, 79.37987620004633, 81.76835078960848, 85.07977029949521, 87.01050594604652, 90.52491944835138, 91.63136027630885, 92.8341831511295, 94.33712215925472, 95.37622386230082, 96.61344805329153, 98.12412201268377, 99.46992672704799, 100.62186606509006, 70.19693405107351, 48.89300903568934, 49.46644042463252, 50.22554648341608, 50.77441577568603, 51.34860841136853, 52.01807256885084, 52.57312517002806, 53.144745399764254, 53.81842838745492, 54.504732826306, 55.05751437615711, 56.90448696722312, 58.49753092509488, 59.167046866038774, 59.83255248415376, 60.44829825665106, 61.13094753817622, 62.39263711143982, 64.65437644599322, 65.48399683588516, 66.14996057078652, 66.95461398316641, 67.90520613246925, 68.6548639899743, 69.49155738467692, 70.26834096227857, 71.37913305864254, 72.24087263211094, 73.06296075930727, 73.80718665326803, 74.95529360718108, 76.31739169635186, 77.2839308564904, 54.045799741477644, 56.283991960675486, 56.9113828649821, 57.6230318211311, 58.21321325157663, 58.989557470406574, 59.65910959404081, 60.26453560752099, 42.09541391270407, 29.413335719444074 ] }, { "name": "AverageStrategy", "type": "scatter", "x": [ "2018-01-07 08:05:00", "2018-01-08 03:50:00", "2018-01-09 06:35:00", "2018-01-09 21:55:00", "2018-01-09 22:30:00", "2018-01-10 03:30:00", "2018-01-27 14:40:00", "2018-01-28 10:30:00", "2018-01-30 14:30:00", "2018-02-14 00:35:00", "2018-02-14 13:35:00", "2018-03-01 05:10:00", "2018-03-02 18:40:00", "2018-03-05 14:55:00", "2018-03-11 03:50:00", "2018-03-18 12:10:00", "2018-05-09 04:55:00" ], "y": [ 100, 79.66251100000001, 63.66906697908501, 50.485026689794786, 40.3029667031202, 32.149029273433726, 25.279543971185014, 20.17477689672402, 16.062090321221596, 24.135372515161983, 36.54543471986268, 28.99018211306932, 43.49204788526198, 34.26313883508336, 27.3683979014931, 21.879374502594988, 17.424751138572503 ] }, { "name": "ClucMay72018", "type": "scatter", "x": [ "2018-01-05 10:05:00", "2018-01-05 15:10:00", "2018-01-05 17:10:00", "2018-01-05 19:15:00", "2018-01-05 19:20:00", "2018-01-05 21:05:00", "2018-01-05 23:05:00", "2018-01-05 23:25:00", "2018-01-06 00:20:00", "2018-01-06 06:35:00", "2018-01-06 22:45:00", "2018-01-06 23:25:00", "2018-01-07 04:05:00", "2018-01-07 04:10:00", "2018-01-07 08:30:00", "2018-01-07 08:40:00", "2018-01-07 08:55:00", "2018-01-08 00:55:00", "2018-01-08 01:05:00", "2018-01-08 04:00:00", "2018-01-08 07:30:00", "2018-01-08 13:35:00", "2018-01-08 15:10:00", "2018-01-08 23:00:00", "2018-01-09 06:45:00", "2018-01-10 02:35:00", "2018-01-10 03:50:00", "2018-01-10 04:25:00", "2018-01-10 04:40:00", "2018-01-10 06:55:00", "2018-01-10 09:05:00", "2018-01-10 09:10:00", "2018-01-10 12:05:00", "2018-01-11 00:35:00", "2018-01-11 00:50:00", "2018-01-11 01:20:00", "2018-01-11 03:30:00", "2018-01-11 04:15:00", "2018-01-11 04:30:00", "2018-01-11 04:30:00", "2018-01-11 04:40:00", "2018-01-13 02:05:00", "2018-01-13 12:20:00", "2018-01-14 11:50:00", "2018-01-14 15:10:00", "2018-01-16 01:00:00", "2018-01-16 10:15:00", "2018-01-16 14:15:00", "2018-01-16 21:40:00", "2018-01-16 22:15:00", "2018-01-16 22:35:00", "2018-01-16 22:35:00", "2018-01-16 22:35:00", "2018-01-16 22:45:00", "2018-01-17 15:15:00", "2018-01-17 15:20:00", "2018-01-17 15:30:00", "2018-01-17 17:00:00", "2018-01-17 18:45:00", "2018-01-18 04:35:00", "2018-01-24 16:40:00", "2018-01-28 16:10:00", "2018-01-28 16:35:00", "2018-02-01 13:20:00", "2018-02-01 23:50:00", "2018-02-02 12:35:00", "2018-02-02 12:55:00", "2018-02-02 13:00:00", "2018-02-02 13:05:00", "2018-02-02 13:30:00", "2018-02-03 03:20:00", "2018-02-05 02:25:00", "2018-02-10 08:45:00", "2018-02-15 10:15:00", "2018-03-01 04:20:00", "2018-03-05 15:00:00", "2018-03-07 16:50:00", "2018-04-01 23:30:00", "2018-04-17 06:15:00", "2018-04-20 22:55:00", "2018-04-29 08:55:00", "2018-05-09 04:55:00" ], "y": [ 100, 103.38663100000001, 105.57709905899166, 112.25285622307166, 113.43205227218091, 116.81886565338486, 121.47490817259988, 124.1337011579694, 126.98367563082212, 129.2395723743226, 131.7349184061645, 133.09085801722404, 135.54552191888186, 139.32748867326856, 151.44909025655897, 156.36922593866922, 165.24023976924104, 152.26712774841167, 155.38217514912057, 157.99325761969195, 161.93635064774676, 166.20056713035817, 169.12953135893616, 172.4537655326148, 176.16861451494236, 179.86955243686924, 182.39861367499444, 172.06423836566, 161.6628880514029, 167.4085568387822, 170.1528568515857, 172.8187063179651, 174.85709777442432, 177.39743393088798, 167.976193269943, 170.4658289018264, 160.28574085849758, 162.56426517624004, 153.33391171752737, 157.5703896977621, 159.99109947497968, 163.1372508502494, 154.97966234697063, 157.53395345275575, 160.17057875228056, 162.70314148551483, 166.73742770584195, 169.52461554949565, 173.58133790434894, 164.73968431317002, 176.8612698224573, 179.71770313297887, 186.24987013956667, 188.22553053706173, 193.286869879076, 197.4395667622861, 185.80851639926854, 188.01539945216078, 190.16597411556046, 192.73999418309774, 196.33215884108606, 198.99230449097732, 201.25579817625518, 205.74799865897765, 208.0570240912479, 210.55854570615298, 212.80585812032933, 215.79091568500334, 218.7541414338257, 222.38128416506726, 224.70023394389656, 227.1221339574281, 229.622492004288, 233.06470308007636, 235.61348235843087, 242.56645271577193, 245.36577145802207, 248.35254519888, 250.96056729825156, 254.53367860569657, 257.7203995364513, 260.3912178897434 ] }, { "name": "CofiBitStrategy", "type": "scatter", "x": [ "2018-01-05 03:00:00", "2018-01-05 03:15:00", "2018-01-05 09:00:00", "2018-01-05 09:15:00", "2018-01-05 16:30:00", "2018-01-05 19:00:00", "2018-01-06 10:20:00", "2018-01-06 13:50:00", "2018-01-08 01:00:00", "2018-01-09 21:55:00", "2018-01-09 22:30:00", "2018-01-09 23:40:00", "2018-01-10 21:35:00", "2018-01-10 22:10:00", "2018-01-10 22:30:00", "2018-01-11 18:30:00", "2018-01-16 22:35:00", "2018-01-17 16:20:00", "2018-01-18 13:30:00", "2018-01-24 23:15:00", "2018-01-31 10:55:00", "2018-01-31 13:40:00", "2018-02-01 12:05:00", "2018-02-01 14:35:00", "2018-02-01 19:30:00", "2018-02-02 18:45:00", "2018-02-02 22:25:00", "2018-02-03 14:35:00", "2018-02-03 15:00:00", "2018-02-03 18:10:00", "2018-02-04 01:05:00", "2018-02-04 01:25:00", "2018-02-04 06:20:00", "2018-02-05 05:05:00", "2018-02-05 20:15:00", "2018-02-07 04:25:00", "2018-02-09 09:58:15.341000", "2018-02-09 09:58:15.428000", "2018-02-09 15:08:16.690000", "2018-02-09 22:33:15.428000", "2018-02-10 00:18:16.801000", "2018-02-11 13:15:00", "2018-02-12 12:25:00", "2018-02-13 07:30:00", "2018-02-13 14:55:00", "2018-02-13 20:05:00", "2018-02-14 12:50:00", "2018-02-16 14:50:00", "2018-02-19 07:20:00", "2018-02-19 21:00:00", "2018-02-20 04:30:00", "2018-02-21 16:45:00", "2018-02-24 14:30:00", "2018-03-05 14:55:00", "2018-03-09 09:15:00", "2018-03-15 21:05:00", "2018-03-18 02:50:00", "2018-03-18 10:50:00", "2018-03-18 12:10:00", "2018-03-19 20:35:00", "2018-03-20 10:25:00", "2018-03-20 16:55:00", "2018-03-20 19:35:00", "2018-03-21 00:55:00", "2018-03-24 05:45:00", "2018-03-29 22:05:00", "2018-03-30 03:30:00", "2018-03-31 04:50:00", "2018-04-03 16:30:00", "2018-04-04 00:30:00", "2018-04-21 09:25:00", "2018-04-22 11:00:00", "2018-04-27 02:45:00", "2018-05-04 01:05:00", "2018-05-04 08:50:00" ], "y": [ 100, 108.929553, 115.06599479588412, 121.54224497570128, 128.8202833306851, 142.28201582077003, 151.19814679858175, 161.66621138988648, 121.19082659142796, 90.67542364985653, 67.50763528630142, 71.31787828453484, 75.06640159511507, 80.27846904113231, 84.8802917915944, 89.56590119203739, 67.06431536642057, 70.55120372812996, 74.91501438744636, 56.14679331355504, 42.08319674089355, 31.545523877104934, 23.653326228681, 24.84799210904412, 26.221150297291437, 27.56452537989742, 29.330743292653636, 31.124300059938566, 32.914747519139574, 34.58485036609507, 36.322126945139864, 38.14967004050808, 40.12760453819729, 42.202819256655935, 44.52085426134437, 46.75972165169011, 53.3489071064042, 57.41273663171542, 60.97231252382498, 64.29449872184813, 67.59278078847946, 71.10943918162317, 75.12161009165952, 79.34996513456674, 83.49923194342814, 88.03906096941508, 92.85137024379854, 97.79723868540354, 102.96829408614869, 108.65400764582706, 115.54635075527138, 121.56441258122408, 91.15867794321979, 67.75233640969098, 50.802027753209835, 53.569330541570736, 56.40242869111066, 59.48130698374811, 44.55172733904615, 46.86534799218016, 49.27928177541266, 51.775063032461595, 54.732037843618386, 57.481252733920364, 60.6787422613117, 63.8312432096062, 67.09936839306671, 70.98360857868035, 74.57885949909019, 78.63173351291321, 58.95326703011269, 62.53876817985859, 65.96913656202034, 49.468533713394784, 37.07904842277303 ] }, { "name": "EMASkipPump", "type": "scatter", "x": [ "2018-01-05 03:25:00", "2018-01-05 04:20:00", "2018-01-05 04:20:00", "2018-01-05 10:50:00", "2018-01-05 16:20:00", "2018-01-05 16:20:00", "2018-01-05 17:30:00", "2018-01-05 19:00:00", "2018-01-05 19:10:00", "2018-01-06 02:30:00", "2018-01-06 10:35:00", "2018-01-07 00:15:00", "2018-01-07 03:25:00", "2018-01-07 03:55:00", "2018-01-07 04:35:00", "2018-01-07 15:55:00", "2018-01-07 16:05:00", "2018-01-07 16:20:00", "2018-01-08 00:05:00", "2018-01-08 00:40:00", "2018-01-08 00:50:00", "2018-01-08 01:05:00", "2018-01-08 04:40:00", "2018-01-08 06:55:00", "2018-01-09 03:55:00", "2018-01-09 04:05:00", "2018-01-09 04:10:00", "2018-01-09 09:45:00", "2018-01-09 12:05:00", "2018-01-09 20:25:00", "2018-01-09 21:25:00", "2018-01-09 21:55:00", "2018-01-09 22:10:00", "2018-01-09 22:30:00", "2018-01-09 22:40:00", "2018-01-09 22:45:00", "2018-01-10 02:30:00", "2018-01-10 03:35:00", "2018-01-10 03:45:00", "2018-01-10 03:50:00", "2018-01-10 04:25:00", "2018-01-10 04:55:00", "2018-01-10 09:20:00", "2018-01-10 09:25:00", "2018-01-10 09:45:00", "2018-01-10 18:55:00", "2018-01-10 21:55:00", "2018-01-10 22:10:00", "2018-01-10 22:35:00", "2018-01-11 00:40:00", "2018-01-11 00:55:00", "2018-01-11 03:20:00", "2018-01-13 15:45:00", "2018-01-13 16:40:00", "2018-01-13 17:15:00", "2018-01-13 20:40:00", "2018-01-14 00:05:00", "2018-01-14 00:35:00", "2018-01-14 21:30:00", "2018-01-14 23:50:00", "2018-01-15 00:25:00", "2018-01-15 14:10:00", "2018-01-16 01:20:00", "2018-01-16 09:55:00", "2018-01-16 10:20:00", "2018-01-16 21:00:00", "2018-01-16 21:20:00", "2018-01-16 22:25:00", "2018-01-16 22:30:00", "2018-01-17 00:15:00", "2018-01-17 04:25:00", "2018-01-17 04:55:00", "2018-01-17 06:15:00", "2018-01-17 14:15:00", "2018-01-17 14:55:00", "2018-01-17 21:30:00", "2018-01-19 11:50:00", "2018-01-21 07:05:00", "2018-01-21 07:10:00", "2018-01-21 07:15:00", "2018-01-22 19:45:00", "2018-01-23 15:30:00", "2018-01-24 14:05:00", "2018-01-24 16:00:00", "2018-01-25 01:25:00", "2018-01-27 12:05:00", "2018-01-27 16:50:00", "2018-01-28 04:50:00", "2018-01-28 05:40:00", "2018-01-28 05:45:00", "2018-01-28 07:35:00", "2018-01-28 10:10:00", "2018-01-28 11:45:00", "2018-01-28 12:00:00", "2018-01-30 23:35:00", "2018-01-31 10:55:00", "2018-01-31 14:05:00", "2018-01-31 14:20:00", "2018-02-01 08:15:00", "2018-02-01 08:40:00", "2018-02-01 09:45:00", "2018-02-01 09:45:00", "2018-02-01 10:05:00", "2018-02-01 11:25:00", "2018-02-01 12:55:00", "2018-02-01 13:00:00", "2018-02-01 13:05:00", "2018-02-01 13:35:00", "2018-02-01 16:10:00", "2018-02-02 00:30:00", "2018-02-02 08:50:00", "2018-02-02 09:00:00", "2018-02-02 12:50:00", "2018-02-02 22:00:00", "2018-02-02 22:25:00", "2018-02-03 18:30:00", "2018-02-04 18:45:00", "2018-02-05 16:05:00", "2018-02-06 00:40:00", "2018-02-09 09:58:15.341000", "2018-02-09 09:58:15.990000", "2018-02-09 11:38:15.483000", "2018-02-10 00:53:15.428000", "2018-02-10 02:58:16.611000", "2018-02-10 10:50:00", "2018-02-11 08:15:00", "2018-02-11 17:30:00", "2018-02-12 12:25:00", "2018-02-13 10:40:00", "2018-02-13 17:15:00", "2018-02-14 00:35:00", "2018-02-14 01:25:00", "2018-02-14 10:50:00", "2018-02-14 11:10:00", "2018-02-14 13:45:00", "2018-02-15 02:00:00", "2018-02-15 03:10:00", "2018-02-15 05:20:00", "2018-02-15 20:30:00", "2018-02-18 09:55:00", "2018-02-18 19:25:00", "2018-02-19 07:30:00", "2018-02-20 02:10:00", "2018-02-20 04:30:00", "2018-02-20 11:45:00", "2018-02-20 17:40:00", "2018-02-21 00:15:00", "2018-02-21 09:05:00", "2018-02-21 14:35:00", "2018-02-22 13:25:00", "2018-02-22 13:25:00", "2018-02-22 14:05:00", "2018-02-23 03:00:00", "2018-02-23 03:25:00", "2018-02-23 03:25:00", "2018-02-24 00:10:00", "2018-02-24 10:20:00", "2018-02-24 14:15:00", "2018-02-24 20:40:00", "2018-02-25 10:30:00", "2018-02-25 13:40:00", "2018-02-25 20:00:00", "2018-02-28 08:55:00", "2018-02-28 12:40:00", "2018-02-28 23:55:00", "2018-03-02 06:35:00", "2018-03-02 14:35:00", "2018-03-03 03:45:00", "2018-03-03 10:15:00", "2018-03-04 07:45:00", "2018-03-04 15:35:00", "2018-03-05 15:30:00", "2018-03-06 11:25:00", "2018-03-07 17:15:00", "2018-03-08 02:45:00", "2018-03-08 09:20:00", "2018-03-09 03:50:00", "2018-03-09 20:50:00", "2018-03-10 14:50:00", "2018-03-11 20:10:00", "2018-03-12 16:30:00", "2018-03-14 01:10:00", "2018-03-14 09:40:00", "2018-03-15 00:35:00", "2018-03-15 14:15:00", "2018-03-16 18:40:00", "2018-03-18 03:15:00", "2018-03-18 13:35:00", "2018-03-18 17:35:00", "2018-03-18 23:00:00", "2018-03-19 00:35:00", "2018-03-19 00:55:00", "2018-03-19 20:25:00", "2018-03-20 04:35:00", "2018-03-24 05:50:00", "2018-03-25 00:30:00", "2018-03-26 09:25:00", "2018-03-26 11:40:00", "2018-03-29 05:55:00", "2018-03-29 06:40:00", "2018-03-29 15:30:00", "2018-04-03 18:00:00", "2018-04-05 07:30:00", "2018-04-06 08:30:00", "2018-04-06 19:00:00", "2018-04-07 17:15:00", "2018-04-09 07:45:00", "2018-04-09 07:50:00", "2018-04-09 08:00:00", "2018-04-09 08:15:00", "2018-04-09 10:20:00", "2018-04-10 18:35:00", "2018-04-10 21:40:00", "2018-04-11", "2018-04-12 03:55:00", "2018-04-12 14:50:00", "2018-04-13 08:20:00", "2018-04-13 09:00:00", "2018-04-15 04:15:00", "2018-04-16 00:25:00", "2018-04-18 21:50:00", "2018-04-19 17:40:00", "2018-04-20 12:15:00", "2018-04-22 16:35:00", "2018-04-22 16:40:00", "2018-04-24 10:00:00", "2018-04-27 10:15:00", "2018-04-29 09:30:00", "2018-04-30 02:45:00", "2018-04-30 09:10:00", "2018-05-03 02:40:00", "2018-05-03 03:10:00", "2018-05-03 03:10:00", "2018-05-03 04:45:00", "2018-05-03 12:45:00", "2018-05-03 22:50:00", "2018-05-03 23:30:00", "2018-05-04 13:25:00", "2018-05-06 22:40:00", "2018-05-08 18:50:00", "2018-05-08 21:35:00", "2018-05-10 01:30:00", "2018-05-11 00:05:00", "2018-05-11 01:20:00", "2018-05-11 03:40:00", "2018-05-11 07:50:00", "2018-05-12 03:45:00" ], "y": [ 100, 92.538635, 86.97240926854585, 82.61629091371552, 90.96927875190526, 100.38387680665417, 94.92002354945747, 105.90261388461494, 95.9400002227327, 105.82104505047238, 118.13514270585927, 131.02230813795313, 124.06587522083072, 117.64069584525049, 131.71928377096205, 124.50559948086789, 118.06111992860247, 110.36454787366657, 104.14226198692344, 98.40527930712354, 92.83499926930416, 87.84517283122864, 82.68276062577644, 77.21647681618259, 73.34569822718233, 69.62803728990984, 66.04252062125475, 62.706103332209835, 59.49272279634041, 56.364801276529704, 62.47582230260991, 59.1205001633335, 55.957932367001206, 52.752017925217835, 49.917718997158644, 47.245213674767776, 44.356857693771104, 41.65238104614711, 39.41119846010186, 37.419120810961516, 35.52486799998774, 33.53183231677503, 37.128243053300466, 40.865820386991714, 45.15390238688045, 50.11319206069247, 55.17221050636085, 61.41789011430819, 67.65415458102845, 64.00718228222652, 60.54924994567782, 57.32156863810606, 54.39695685960164, 60.50052932616343, 57.43065079243931, 54.30860058530215, 60.860756199880946, 67.32998740520858, 63.716504135349126, 60.36720659124194, 57.20097014874187, 66.5171543025294, 63.11421451348254, 59.75638998296116, 66.20553921304617, 73.93340196346153, 69.08414857404712, 65.35145672486941, 61.25583976050411, 58.13117508641201, 64.45371235906447, 71.05399229179181, 78.2617256122894, 86.1614211516448, 81.36553083754251, 91.74034227213686, 102.26611172891141, 97.10047145978858, 91.63932732385285, 86.83177334198035, 82.22660074867761, 90.45848664814939, 85.50850418193654, 81.1470044023601, 76.93008427837516, 72.83799538711371, 69.16575276563965, 65.69867208520857, 62.3877723947799, 59.23471683754579, 56.24419647736847, 53.135630357841144, 50.20854948238766, 47.642568758693486, 45.082831682980526, 42.80949878821237, 40.63048502561265, 38.58007531858726, 36.632612144020214, 34.79020458865256, 33.047694399878246, 31.263759697079234, 29.677046983603606, 28.18169448194681, 26.763860187163658, 25.2305797804906, 23.871077170203055, 22.648982574406663, 25.051794563559756, 23.772885670531238, 22.584173634280514, 21.38314027931565, 19.948148099229975, 21.978312822918138, 24.584302033945594, 27.061779908713035, 29.794753120960948, 32.83478716261799, 36.30169938745098, 44.03273000333481, 49.8634586868802, 55.00600533034699, 60.73002650553222, 66.88691493439727, 63.13956348555297, 59.670924006141185, 56.60812765824309, 63.2477317465614, 70.00415867331878, 78.19451643044513, 86.46683552512239, 95.45070687878511, 90.64484682955327, 100.1967605796075, 111.9203566968273, 124.34597070359749, 118.1250275880163, 112.16017556367935, 106.18531889127047, 100.64628915369002, 95.4916773771291, 105.09010258678344, 116.27739169098356, 130.41802250184625, 123.80337559799939, 117.35409997134413, 111.37452952406124, 122.52935913056372, 115.60564042062302, 109.461881549489, 103.76172521802235, 98.38587900248747, 93.14758753301454, 88.40364051441414, 83.20046921273007, 91.9000076181621, 87.20025225657021, 82.7698516001202, 78.49265826899381, 86.5822482074217, 82.07960592354833, 90.61410873692516, 85.52410311829871, 80.9661456465888, 76.79024867330364, 72.93648166577724, 69.24630122032697, 65.56958991625032, 62.2720139330706, 68.57014252752728, 65.09048413192966, 61.74762302569837, 58.42256168891047, 55.06555455621633, 52.26014681856269, 57.876241688302066, 54.94298347260188, 60.56303861701317, 57.53133526957801, 63.369231438728534, 60.14111724077726, 57.11171233816055, 54.18401233320026, 51.3562245871478, 56.878526549020066, 54.0017693672597, 59.44792503047804, 65.4154361525555, 61.9489564055096, 68.17066045694504, 75.29015541215772, 82.82644624109096, 91.35948929268274, 100.93612899045213, 111.13839155746525, 105.49198779224558, 100.17100779528056, 110.18874365899804, 104.45071441789037, 114.95064964193455, 126.51250898011544, 140.50513658734062, 133.3447236519361, 126.63040078052333, 120.23068393915682, 114.15513652145609, 108.12185034187324, 102.70579872114459, 97.27558189465368, 92.33884514074418, 87.41746725160866, 83.03297599597977, 78.85757312240784, 74.90876122248572, 83.12717220818023, 78.7710681469439, 74.79007131265777, 71.0338229979587, 78.31628156553242, 74.36605061415901, 81.88252927589755, 77.71418366874171, 73.78173639810441, 70.05159668224992, 66.46366177964397, 63.09850223579161, 59.9305037453238, 56.62599989444565, 62.35440778966754, 59.111445454418224, 56.02423553935705, 53.14011405645686, 50.33492820838987, 47.69858500184868, 45.22749827465325, 42.9170537866675, 40.70372690537073, 38.59798227766081, 42.70439690947249, 40.53922377296259, 38.410001176170454, 36.487761912508674, 34.31963319335645, 32.602781874183506, 30.969431406459723, 28.95872156165354, 32.17125617974671 ] }, { "name": "MACDStrategy", "type": "scatter", "x": [ "2018-01-05 03:15:00", "2018-01-05 04:10:00", "2018-01-05 05:00:00", "2018-01-05 06:10:00", "2018-01-05 07:55:00", "2018-01-05 08:25:00", "2018-01-05 09:05:00", "2018-01-05 09:10:00", "2018-01-05 09:15:00", "2018-01-05 11:00:00", "2018-01-05 12:10:00", "2018-01-05 14:35:00", "2018-01-05 17:50:00", "2018-01-05 18:00:00", "2018-01-05 21:15:00", "2018-01-05 22:50:00", "2018-01-05 23:55:00", "2018-01-06 02:40:00", "2018-01-06 03:35:00", "2018-01-06 05:40:00", "2018-01-06 09:20:00", "2018-01-06 09:55:00", "2018-01-06 10:30:00", "2018-01-06 13:30:00", "2018-01-06 17:30:00", "2018-01-06 18:15:00", "2018-01-06 18:25:00", "2018-01-06 18:35:00", "2018-01-06 21:45:00", "2018-01-07 00:50:00", "2018-01-07 02:50:00", "2018-01-07 04:15:00", "2018-01-07 08:40:00", "2018-01-07 11:25:00", "2018-01-07 18:05:00", "2018-01-07 22:20:00", "2018-01-07 22:25:00", "2018-01-08 02:40:00", "2018-01-08 09:25:00", "2018-01-09 08:40:00", "2018-01-09 08:45:00", "2018-01-09 21:30:00", "2018-01-10", "2018-01-10 02:00:00", "2018-01-10 21:50:00", "2018-01-11 02:15:00", "2018-01-11 02:55:00", "2018-01-11 03:35:00", "2018-01-11 03:50:00", "2018-01-11 05:30:00", "2018-01-11 06:50:00", "2018-01-11 07:05:00", "2018-01-11 07:35:00", "2018-01-11 08:55:00", "2018-01-11 14:30:00", "2018-01-11 20:05:00", "2018-01-11 23:50:00", "2018-01-12 01:30:00", "2018-01-12 07:10:00", "2018-01-12 10:05:00", "2018-01-13 16:50:00", "2018-01-13 21:55:00", "2018-01-14 00:45:00", "2018-01-14 06:55:00", "2018-01-14 08:55:00", "2018-01-14 10:15:00", "2018-01-14 12:35:00", "2018-01-14 14:00:00", "2018-01-14 18:20:00", "2018-01-15 01:40:00", "2018-01-15 07:00:00", "2018-01-15 11:10:00", "2018-01-15 18:00:00", "2018-01-16 05:45:00", "2018-01-28 07:20:00", "2018-01-28 08:30:00", "2018-01-28 12:55:00", "2018-01-28 15:55:00", "2018-01-29 01:25:00", "2018-01-30 01:15:00", "2018-01-30 11:50:00", "2018-01-30 18:15:00", "2018-02-01 12:05:00", "2018-02-01 13:35:00", "2018-02-01 14:25:00", "2018-02-01 21:20:00", "2018-02-02 02:00:00", "2018-02-02 04:25:00", "2018-02-02 06:05:00", "2018-02-02 11:10:00", "2018-02-02 12:55:00", "2018-02-02 13:15:00", "2018-02-02 14:15:00", "2018-02-02 16:35:00", "2018-02-02 18:50:00", "2018-02-02 19:05:00", "2018-02-03 00:50:00", "2018-02-03 06:10:00", "2018-02-03 07:55:00", "2018-02-03 12:55:00", "2018-02-03 13:20:00", "2018-02-03 14:30:00", "2018-02-03 20:05:00", "2018-02-03 20:25:00", "2018-02-04 03:05:00", "2018-02-04 05:35:00", "2018-02-04 06:15:00", "2018-02-04 10:45:00", "2018-02-04 17:05:00", "2018-02-04 21:40:00", "2018-02-04 22:15:00", "2018-02-05 10:35:00", "2018-02-05 15:15:00", "2018-02-05 16:30:00", "2018-02-05 23:50:00", "2018-02-06 00:45:00", "2018-02-06 01:50:00", "2018-02-06 05:20:00", "2018-02-06 12:35:00", "2018-02-06 15:45:00", "2018-02-06 17:25:00", "2018-02-06 18:10:00", "2018-02-07 02:30:00", "2018-02-07 03:50:00", "2018-02-07 13:10:00", "2018-02-09 09:58:15.341000", "2018-02-09 09:58:15.428000", "2018-02-09 17:13:15.428000", "2018-02-09 17:48:15.483000", "2018-02-09 20:53:15.990000", "2018-02-10 01:18:15.483000", "2018-02-10 03:23:15.341000", "2018-02-10 07:45:00", "2018-02-10 08:35:00", "2018-02-10 16:10:00", "2018-02-11 13:35:00", "2018-02-11 20:00:00", "2018-02-12 01:40:00", "2018-02-12 12:05:00", "2018-02-13 23:05:00", "2018-02-14 14:15:00", "2018-02-14 20:05:00", "2018-02-14 22:35:00", "2018-02-15 15:10:00", "2018-02-16 01:00:00", "2018-02-16 14:55:00", "2018-02-17 09:30:00", "2018-02-19 08:25:00", "2018-02-19 16:15:00", "2018-02-20 04:20:00", "2018-02-20 10:40:00", "2018-02-20 16:10:00", "2018-02-20 16:55:00", "2018-02-20 20:30:00", "2018-02-21 01:25:00", "2018-02-21 09:05:00", "2018-02-21 18:15:00", "2018-02-22 01:05:00", "2018-02-24 04:00:00", "2018-02-24 14:15:00", "2018-02-24 22:30:00", "2018-02-25 10:45:00", "2018-02-25 15:55:00", "2018-02-26 10:40:00", "2018-03-01 02:45:00", "2018-03-03 00:15:00", "2018-03-06 11:25:00", "2018-03-06 14:40:00", "2018-03-06 20:20:00", "2018-03-08 07:25:00", "2018-03-08 18:25:00", "2018-03-09 15:30:00", "2018-03-10 06:10:00", "2018-03-10 15:20:00", "2018-03-11 06:50:00", "2018-03-14 20:05:00", "2018-03-15 02:25:00", "2018-03-15 07:35:00", "2018-03-16 14:10:00", "2018-03-17 20:40:00", "2018-03-18 10:30:00", "2018-03-19 10:30:00", "2018-03-19 17:20:00", "2018-03-20 07:40:00", "2018-03-20 10:25:00", "2018-03-20 12:25:00", "2018-03-20 16:30:00", "2018-03-22 10:25:00", "2018-03-23 03:25:00", "2018-03-24 02:15:00", "2018-03-24 04:55:00", "2018-03-24 15:05:00", "2018-03-26 11:15:00", "2018-03-26 18:15:00", "2018-03-27 04:35:00", "2018-03-29 12:20:00", "2018-03-29 21:00:00", "2018-03-30 05:25:00", "2018-03-30 09:35:00", "2018-03-30 14:25:00", "2018-03-30 14:40:00", "2018-03-30 16:40:00", "2018-03-30 18:50:00", "2018-04-02 03:05:00", "2018-04-03 05:05:00", "2018-04-03 14:15:00", "2018-04-04 01:35:00", "2018-04-27 10:10:00", "2018-05-01 00:40:00", "2018-05-04 08:50:00", "2018-05-07 09:35:00", "2018-05-07 16:10:00", "2018-05-08 05:40:00", "2018-05-08 17:15:00", "2018-05-11 06:50:00" ], "y": [ 100, 101.21998699999999, 105.16340027833508, 107.25509820660317, 110.42433083871587, 111.58280353597793, 112.85712266965218, 115.62694794562402, 117.3933322660712, 121.01748865438942, 124.83235804431345, 126.17365177173366, 130.38019173851052, 136.46893365467977, 138.837166400507, 141.32793432153701, 146.3360239357583, 148.58252628433218, 150.3383467989878, 152.56786899216718, 154.1147195252689, 156.51758222212797, 161.56528520502235, 163.90711746621935, 165.6099353970065, 167.68507591441224, 171.13703082608177, 173.28531397404157, 178.79356370783782, 181.27987236856592, 183.0967589533735, 186.45679687240826, 190.36249247995087, 192.8776397792179, 198.506902924193, 201.45622320452728, 206.09683580115947, 216.40294714772597, 220.8064463220857, 153.7127118136122, 107.36634015931725, 75.05532478701365, 77.3258234171456, 78.27764553578487, 79.18924742628323, 81.78373265863529, 82.6318904862675, 84.14862445202898, 85.16023817803516, 86.01559527471679, 87.22394579775982, 88.27289137528966, 90.85794181372108, 93.05712558646314, 95.69200366630737, 96.8340236164223, 100.84703471657784, 104.00522600633475, 105.34892568393263, 106.74752537944143, 114.80231469085896, 116.55445172615693, 117.78182954560373, 119.1468632369408, 120.56456912469314, 121.83278300473302, 123.19045098870288, 124.96147263734726, 126.48916912723953, 128.0755912268666, 129.3600779811077, 131.1926122497998, 134.79002125563133, 137.61196627003625, 96.31473491480902, 98.12106864762147, 99.39983245598228, 100.41132614505267, 102.03179726211916, 103.34934712429855, 104.64941990151394, 106.60558022951717, 74.61888716994481, 52.11486800202112, 53.71107084236443, 54.34561128485329, 56.01301778785786, 56.61239460690987, 57.51292343893041, 58.11937306116608, 58.745584314569726, 59.82059913473419, 60.83406477012507, 62.95854239705976, 63.621811270798204, 65.24402494534631, 66.61302922929026, 67.4250866863249, 68.30842679250766, 69.43037289313082, 70.37034280477361, 71.26751049037053, 72.18249552800367, 73.22151996345691, 74.15800050511834, 74.91602875468156, 75.74971305167085, 76.72926440602149, 77.69697542329551, 78.58116156482433, 79.43419700675643, 80.40588614808719, 81.49941906464296, 82.34607088963087, 83.47978853673945, 84.33555571018938, 85.28995420678376, 86.19360809480098, 87.44252934188438, 88.35883523473152, 91.90659267942588, 93.34719543330253, 94.57301960206921, 96.76461598338953, 97.82925222076206, 115.3046989429715, 122.02848837251375, 124.57207703041787, 126.38164465582251, 127.7279074320884, 129.37884683592742, 131.15643068277956, 132.5001978280329, 133.8706672491979, 135.8299153352435, 137.48409550976902, 140.30654775171772, 141.8277036382156, 143.92442767772152, 145.5013831646336, 150.52388284449881, 152.46937242024856, 154.78298994285885, 156.53775541286166, 158.87258960758953, 160.63309649117863, 163.1674803520753, 165.04984077738456, 166.79961006239236, 169.18009403339002, 175.1292409844347, 180.96973462215402, 183.92812469100824, 186.1231615559769, 190.34266296756843, 193.8074990129665, 196.39007115068884, 198.43697416186686, 201.35738500119527, 204.04332136333394, 206.6059504067332, 208.7691250377892, 212.50836169635477, 216.08178117687453, 151.16145993103427, 105.38310666676333, 73.59632854235498, 74.37508367704619, 75.14465456786598, 76.40774603756633, 77.33014951666135, 78.19663848180451, 79.34769221829028, 80.19372349746011, 81.00588623411788, 81.86088149172971, 82.81002321244728, 83.70205278249176, 84.64402815132117, 85.65497494798676, 86.53432519524803, 87.59865585867348, 88.58023996893817, 89.49342340660435, 90.68109510330456, 91.71664056419006, 92.65954082484147, 93.67596873132415, 94.8339882465017, 95.87172054296764, 96.84318197620908, 97.93802320140472, 98.9642804888439, 100.05781302646112, 101.50782083549669, 102.5661687826392, 104.22375807258412, 105.38405615750426, 106.47455772453539, 107.75767729594587, 109.53470699707975, 110.68477979736043, 111.80937257923115, 113.34674474363324, 114.58732599831974, 115.82356396945849, 117.47793679483009, 82.16570781152245, 83.37836848671452, 58.245171627872224, 58.84862655303996, 59.542261779036544, 60.18387668809247, 42.00460670402992, 29.253985265523998 ] }, { "name": "ReinforcedQuickie", "type": "scatter", "x": [ "2018-01-06 13:20:00", "2018-01-06 14:00:00", "2018-01-06 14:20:00", "2018-01-06 14:55:00", "2018-01-06 15:20:00", "2018-01-06 17:35:00", "2018-01-06 20:25:00", "2018-01-06 22:45:00", "2018-01-07 01:55:00", "2018-01-07 01:55:00", "2018-01-07 03:25:00", "2018-01-07 04:10:00", "2018-01-07 04:45:00", "2018-01-07 06:40:00", "2018-01-07 11:05:00", "2018-01-07 16:20:00", "2018-01-07 18:05:00", "2018-01-09 01:45:00", "2018-01-09 06:20:00", "2018-01-09 10:40:00", "2018-01-11 03:30:00", "2018-01-11 03:35:00", "2018-01-11 04:15:00", "2018-01-11 05:20:00", "2018-01-11 08:15:00", "2018-01-11 14:25:00", "2018-01-11 14:50:00", "2018-01-11 18:45:00", "2018-01-11 19:05:00", "2018-01-11 19:40:00", "2018-01-11 21:05:00", "2018-01-11 23:55:00", "2018-01-12 01:05:00", "2018-01-12 02:50:00", "2018-01-12 04:35:00", "2018-01-12 11:10:00", "2018-01-12 13:10:00", "2018-01-12 16:15:00", "2018-01-12 18:45:00", "2018-01-12 22:50:00", "2018-01-13 01:40:00", "2018-01-13 02:00:00", "2018-01-13 03:55:00", "2018-01-13 04:55:00", "2018-01-13 05:45:00", "2018-01-13 13:15:00", "2018-01-13 13:45:00", "2018-01-13 16:15:00", "2018-01-14 12:45:00", "2018-01-14 17:40:00", "2018-01-15 06:05:00", "2018-01-15 09:35:00", "2018-01-15 13:10:00", "2018-01-15 14:35:00", "2018-01-15 15:55:00", "2018-01-15 16:45:00", "2018-01-16 00:15:00", "2018-01-16 00:25:00", "2018-01-16 04:10:00", "2018-01-16 20:40:00", "2018-01-17 08:50:00", "2018-01-17 11:45:00", "2018-01-17 12:30:00", "2018-01-17 15:20:00", "2018-01-17 15:25:00", "2018-01-17 21:40:00", "2018-01-17 23:00:00", "2018-01-18 04:35:00", "2018-01-18 05:20:00", "2018-01-18 05:40:00", "2018-01-18 08:20:00", "2018-01-18 12:15:00", "2018-01-18 17:20:00", "2018-01-18 17:55:00", "2018-01-18 18:10:00", "2018-01-18 21:05:00", "2018-01-18 21:10:00", "2018-01-19 16:40:00", "2018-01-19 19:00:00", "2018-01-20 01:30:00", "2018-01-20 02:55:00", "2018-01-20 09:15:00", "2018-01-20 17:35:00", "2018-01-21", "2018-01-21 04:25:00", "2018-01-21 13:05:00", "2018-01-22 11:50:00", "2018-01-22 14:35:00", "2018-01-22 16:00:00", "2018-01-22 21:25:00", "2018-01-22 21:55:00", "2018-01-23 00:10:00", "2018-01-23 08:50:00", "2018-01-23 17:00:00", "2018-01-23 20:40:00", "2018-01-23 20:40:00", "2018-01-23 21:50:00", "2018-01-24 12:20:00", "2018-01-24 14:30:00", "2018-01-24 18:10:00", "2018-01-24 23:25:00", "2018-01-25 04:10:00", "2018-01-25 04:30:00", "2018-01-25 09:50:00", "2018-01-25 16:25:00", "2018-01-25 18:40:00", "2018-01-25 18:50:00", "2018-01-25 21:55:00", "2018-01-25 23:15:00", "2018-01-26 04:05:00", "2018-01-26 05:30:00", "2018-01-26 07:05:00", "2018-01-26 13:40:00", "2018-01-26 20:55:00", "2018-01-27 16:45:00", "2018-01-28 04:25:00", "2018-01-28 06:40:00", "2018-01-28 18:40:00", "2018-01-30 03:20:00", "2018-01-30 03:25:00", "2018-01-31 09:45:00", "2018-01-31 12:35:00", "2018-02-01 03:10:00", "2018-02-02 00:35:00", "2018-02-02 01:00:00", "2018-02-02 07:25:00", "2018-02-02 07:35:00", "2018-02-02 08:30:00", "2018-02-02 09:15:00", "2018-02-02 12:45:00", "2018-02-02 18:20:00", "2018-02-02 20:25:00", "2018-02-02 21:10:00", "2018-02-02 21:50:00", "2018-02-02 22:00:00", "2018-02-02 23:00:00", "2018-02-03 01:45:00", "2018-02-03 03:35:00", "2018-02-03 08:45:00", "2018-02-03 12:55:00", "2018-02-03 19:25:00", "2018-02-03 20:05:00", "2018-02-04", "2018-02-04 00:15:00", "2018-02-04 03:25:00", "2018-02-04 03:30:00", "2018-02-04 04:35:00", "2018-02-04 07:55:00", "2018-02-04 10:35:00", "2018-02-04 11:40:00", "2018-02-04 15:25:00", "2018-02-04 17:05:00", "2018-02-04 20:05:00", "2018-02-04 22:20:00", "2018-02-05 03:05:00", "2018-02-05 10:20:00", "2018-02-05 16:20:00", "2018-02-05 16:30:00", "2018-02-05 18:00:00", "2018-02-05 19:15:00", "2018-02-05 21:35:00", "2018-02-05 23:45:00", "2018-02-06 03:05:00", "2018-02-06 03:55:00", "2018-02-06 08:05:00", "2018-02-06 08:30:00", "2018-02-06 09:20:00", "2018-02-06 11:10:00", "2018-02-06 15:45:00", "2018-02-07 00:30:00", "2018-02-07 01:20:00", "2018-02-07 04:55:00", "2018-02-07 05:10:00", "2018-02-07 08:10:00", "2018-02-07 13:15:00", "2018-02-07 13:55:00", "2018-02-07 14:15:00", "2018-02-07 16:10:00", "2018-02-07 17:15:00", "2018-02-07 19:55:00", "2018-02-09 23:38:16.801000", "2018-02-10 08:35:00", "2018-02-10 09:55:00", "2018-02-10 12:50:00", "2018-02-10 16:50:00", "2018-02-10 21:35:00", "2018-02-12 12:05:00", "2018-02-12 21:50:00", "2018-02-12 23:25:00", "2018-02-13 04:15:00", "2018-02-13 15:45:00", "2018-02-13 19:40:00", "2018-02-13 21:25:00", "2018-02-13 21:50:00", "2018-02-13 23:45:00", "2018-02-14 05:35:00", "2018-02-14 06:00:00", "2018-02-14 07:35:00", "2018-02-14 08:25:00", "2018-02-14 09:55:00", "2018-02-14 10:10:00", "2018-02-14 10:50:00", "2018-02-14 11:55:00", "2018-02-14 12:05:00", "2018-02-14 13:05:00", "2018-02-14 15:05:00", "2018-02-14 22:30:00", "2018-02-15 00:40:00", "2018-02-15 04:40:00", "2018-02-15 05:35:00", "2018-02-15 15:45:00", "2018-02-15 17:55:00", "2018-02-16 00:10:00", "2018-02-16 01:35:00", "2018-02-16 03:35:00", "2018-02-16 23:45:00", "2018-02-17 02:25:00", "2018-02-17 09:25:00", "2018-02-18 05:25:00", "2018-02-18 09:50:00", "2018-02-19 05:55:00", "2018-02-19 12:25:00", "2018-02-19 20:05:00", "2018-02-19 21:40:00", "2018-02-19 21:50:00", "2018-02-20 00:15:00", "2018-02-20 00:40:00", "2018-02-20 04:15:00", "2018-02-20 04:40:00", "2018-02-20 06:00:00", "2018-02-20 08:00:00", "2018-02-20 12:10:00", "2018-02-20 16:05:00", "2018-02-20 16:30:00", "2018-02-20 23:05:00", "2018-02-20 23:40:00", "2018-02-21 01:20:00", "2018-02-21 02:35:00", "2018-02-21 15:50:00", "2018-02-21 16:30:00", "2018-02-21 19:10:00", "2018-02-21 22:10:00", "2018-02-21 23:50:00", "2018-02-22 04:35:00", "2018-02-22 04:50:00", "2018-02-22 08:00:00", "2018-02-22 19:00:00", "2018-02-22 19:05:00", "2018-02-23 01:10:00", "2018-02-23 14:05:00", "2018-02-23 18:05:00", "2018-02-23 18:10:00", "2018-02-23 22:20:00", "2018-02-24", "2018-02-24 07:35:00", "2018-02-24 11:45:00", "2018-02-25 08:30:00", "2018-02-25 12:20:00", "2018-02-25 15:35:00", "2018-02-25 16:15:00", "2018-02-26", "2018-02-26 02:10:00", "2018-02-26 04:30:00", "2018-02-26 07:45:00", "2018-02-26 10:50:00", "2018-02-26 16:05:00", "2018-02-26 18:25:00", "2018-02-26 18:25:00", "2018-02-27 01:45:00", "2018-02-27 07:15:00", "2018-02-27 16:50:00", "2018-02-28 12:35:00", "2018-02-28 13:25:00", "2018-03-01 01:40:00", "2018-03-01 12:40:00", "2018-03-01 19:20:00", "2018-03-01 19:25:00", "2018-03-01 20:30:00", "2018-03-02 00:30:00", "2018-03-02 23:40:00", "2018-03-03 05:35:00", "2018-03-03 13:05:00", "2018-03-03 15:25:00", "2018-03-03 19:15:00", "2018-03-04 03:40:00", "2018-03-04 07:35:00", "2018-03-04 15:35:00", "2018-03-04 17:05:00", "2018-03-04 19:10:00", "2018-03-05 02:10:00", "2018-03-05 12:15:00", "2018-03-05 13:25:00", "2018-03-05 16:40:00", "2018-03-05 22:45:00", "2018-03-07 04:10:00", "2018-03-07 13:05:00", "2018-03-07 14:30:00", "2018-03-07 15:50:00", "2018-03-08 03:55:00", "2018-03-08 10:15:00", "2018-03-08 13:40:00", "2018-03-08 16:35:00", "2018-03-08 17:25:00", "2018-03-08 17:55:00", "2018-03-08 21:10:00", "2018-03-08 22:10:00", "2018-03-09 01:15:00", "2018-03-09 04:20:00", "2018-03-09 12:25:00", "2018-03-09 13:00:00", "2018-03-09 17:15:00", "2018-03-10 02:35:00", "2018-03-10 03:10:00", "2018-03-10 21:20:00", "2018-03-11 12:10:00", "2018-03-11 17:20:00", "2018-03-11 17:20:00", "2018-03-12 10:10:00", "2018-03-12 17:55:00", "2018-03-13 10:20:00", "2018-03-14 00:20:00", "2018-03-14 16:50:00", "2018-03-14 21:25:00", "2018-03-14 21:55:00", "2018-03-15 00:55:00", "2018-03-15 01:45:00", "2018-03-15 02:30:00", "2018-03-15 08:50:00", "2018-03-15 09:00:00", "2018-03-15 17:10:00", "2018-03-15 20:25:00", "2018-03-15 20:30:00", "2018-03-15 20:50:00", "2018-03-16 01:05:00", "2018-03-16 14:00:00", "2018-03-16 18:45:00", "2018-03-16 20:15:00", "2018-03-17 14:05:00", "2018-03-17 20:05:00", "2018-03-18 00:20:00", "2018-03-18 00:35:00", "2018-03-18 00:35:00", "2018-03-18 02:05:00", "2018-03-18 06:25:00", "2018-03-18 09:15:00", "2018-03-18 10:00:00", "2018-03-18 10:45:00", "2018-03-18 12:15:00", "2018-03-18 12:30:00", "2018-03-18 15:55:00", "2018-03-18 17:00:00", "2018-03-18 17:00:00", "2018-03-18 17:45:00", "2018-03-18 18:55:00", "2018-03-18 20:15:00", "2018-03-18 21:15:00", "2018-03-19 01:15:00", "2018-03-19 03:30:00", "2018-03-19 08:05:00", "2018-03-19 09:30:00", "2018-03-19 12:30:00", "2018-03-19 14:00:00", "2018-03-19 17:20:00", "2018-03-19 22:30:00", "2018-03-19 22:45:00", "2018-03-20 00:35:00", "2018-03-20 04:20:00", "2018-03-20 04:25:00", "2018-03-20 07:30:00", "2018-03-20 08:00:00", "2018-03-20 11:25:00", "2018-03-20 11:35:00", "2018-03-20 11:45:00", "2018-03-20 15:45:00", "2018-03-20 16:20:00", "2018-03-20 16:30:00", "2018-03-20 16:35:00", "2018-03-20 17:00:00", "2018-03-20 19:05:00", "2018-03-20 19:45:00", "2018-03-21 16:05:00", "2018-03-21 18:50:00", "2018-03-22 11:55:00", "2018-03-22 22:35:00", "2018-03-23 03:25:00", "2018-03-23 03:25:00", "2018-03-23 05:00:00", "2018-03-23 06:05:00", "2018-03-23 17:20:00", "2018-03-23 20:40:00", "2018-03-24 00:10:00", "2018-03-24 05:30:00", "2018-03-25 00:30:00", "2018-03-26 09:00:00", "2018-03-26 11:35:00", "2018-03-26 17:20:00", "2018-03-26 21:35:00", "2018-03-26 23:40:00", "2018-03-27 04:45:00", "2018-03-27 09:55:00", "2018-03-27 11:55:00", "2018-03-27 12:35:00", "2018-03-27 12:50:00", "2018-03-28 01:00:00", "2018-03-28 02:20:00", "2018-03-28 23:55:00", "2018-03-29 05:15:00", "2018-03-29 09:45:00", "2018-03-29 12:40:00", "2018-03-29 15:20:00", "2018-03-29 15:25:00", "2018-03-29 16:40:00", "2018-03-29 19:10:00", "2018-03-29 20:10:00", "2018-03-29 20:40:00", "2018-03-29 22:10:00", "2018-03-29 22:15:00", "2018-03-29 22:35:00", "2018-03-30 00:20:00", "2018-03-30 03:10:00", "2018-03-30 03:10:00", "2018-03-30 08:05:00", "2018-03-30 08:50:00", "2018-03-30 09:40:00", "2018-03-30 11:10:00", "2018-03-30 15:10:00", "2018-03-30 19:05:00", "2018-03-30 21:05:00", "2018-03-30 21:50:00", "2018-03-31 17:25:00", "2018-03-31 21:25:00", "2018-04-01 00:30:00", "2018-04-01 01:00:00", "2018-04-01 07:10:00", "2018-04-01 11:15:00", "2018-04-01 12:45:00", "2018-04-01 14:00:00", "2018-04-01 16:30:00", "2018-04-01 16:45:00", "2018-04-01 18:20:00", "2018-04-01 19:40:00", "2018-04-01 19:45:00", "2018-04-02 00:40:00", "2018-04-02 02:15:00", "2018-04-02 07:10:00", "2018-04-02 07:50:00", "2018-04-02 10:05:00", "2018-04-02 18:00:00", "2018-04-02 19:50:00", "2018-04-03 01:20:00", "2018-04-03 04:55:00", "2018-04-03 05:55:00", "2018-04-03 06:45:00", "2018-04-03 07:00:00", "2018-04-03 15:45:00", "2018-04-03 19:35:00", "2018-04-03 23:25:00", "2018-04-04 01:35:00", "2018-04-04 16:25:00", "2018-04-04 22:35:00", "2018-04-05 04:55:00", "2018-04-05 17:55:00", "2018-04-06 05:45:00", "2018-04-06 23:45:00", "2018-04-07 06:25:00", "2018-04-07 10:45:00", "2018-04-07 13:45:00", "2018-04-09 08:00:00", "2018-04-09 08:00:00", "2018-04-09 08:35:00", "2018-04-10 15:10:00", "2018-04-10 19:25:00", "2018-04-12", "2018-04-12 04:20:00", "2018-04-12 07:05:00", "2018-04-12 09:40:00", "2018-04-12 11:55:00", "2018-04-12 16:25:00", "2018-04-12 16:55:00", "2018-04-12 17:05:00", "2018-04-12 20:25:00", "2018-04-13 08:25:00", "2018-04-13 10:40:00", "2018-04-13 13:25:00", "2018-04-13 16:40:00", "2018-04-13 17:50:00", "2018-04-13 22:00:00", "2018-04-13 23:10:00", "2018-04-14 01:45:00", "2018-04-14 12:20:00", "2018-04-15 01:55:00", "2018-04-15 02:25:00", "2018-04-15 07:40:00", "2018-04-15 08:40:00", "2018-04-15 12:50:00", "2018-04-15 16:00:00", "2018-04-16 00:55:00", "2018-04-16 01:20:00", "2018-04-16 06:50:00", "2018-04-16 15:15:00", "2018-04-16 20:40:00", "2018-04-16 23:05:00", "2018-04-17 03:55:00", "2018-04-17 04:20:00", "2018-04-17 06:40:00", "2018-04-17 11:05:00", "2018-04-17 12:35:00", "2018-04-17 16:30:00", "2018-04-17 16:45:00", "2018-04-17 17:15:00", "2018-04-18 04:50:00", "2018-04-18 05:15:00", "2018-04-18 05:50:00", "2018-04-18 07:45:00", "2018-04-18 13:15:00", "2018-04-18 16:30:00", "2018-04-18 21:25:00", "2018-04-18 22:35:00", "2018-04-19 03:05:00", "2018-04-19 15:20:00", "2018-04-20 00:50:00", "2018-04-20 04:20:00", "2018-04-20 16:45:00", "2018-04-20 20:15:00", "2018-04-20 21:50:00", "2018-04-20 22:50:00", "2018-04-21 11:25:00", "2018-04-21 11:25:00", "2018-04-21 18:15:00", "2018-04-22 20:00:00", "2018-04-22 22:40:00", "2018-04-22 23:05:00", "2018-04-23 08:45:00", "2018-04-23 16:55:00", "2018-04-23 22:45:00", "2018-04-24 00:20:00", "2018-04-24 02:35:00", "2018-04-24 02:45:00", "2018-04-24 04:00:00", "2018-04-24 13:30:00", "2018-04-24 16:15:00", "2018-04-24 18:45:00", "2018-04-25 04:55:00", "2018-04-25 20:40:00", "2018-04-25 21:05:00", "2018-04-26 00:20:00", "2018-04-26 06:50:00", "2018-04-26 08:40:00", "2018-04-26 10:20:00", "2018-04-26 15:55:00", "2018-04-27 00:45:00", "2018-04-27 09:30:00", "2018-04-27 10:00:00", "2018-04-27 10:30:00", "2018-04-27 13:15:00", "2018-04-27 16:50:00", "2018-04-27 17:30:00", "2018-04-28 01:50:00", "2018-04-28 03:25:00", "2018-04-28 16:35:00", "2018-04-28 21:10:00", "2018-04-29 00:40:00", "2018-04-29 05:25:00", "2018-04-29 16:00:00", "2018-04-29 21:50:00", "2018-04-30 00:05:00", "2018-04-30 03:40:00", "2018-04-30 08:45:00", "2018-04-30 16:20:00", "2018-04-30 19:55:00", "2018-04-30 20:30:00", "2018-05-01 00:40:00", "2018-05-01 14:05:00", "2018-05-01 16:25:00", "2018-05-01 16:50:00", "2018-05-02 06:40:00", "2018-05-03 02:35:00", "2018-05-03 03:10:00", "2018-05-03 04:40:00", "2018-05-04 21:00:00", "2018-05-05 14:15:00", "2018-05-05 22:50:00", "2018-05-06 00:25:00", "2018-05-06 02:10:00", "2018-05-06 04:55:00", "2018-05-06 08:50:00", "2018-05-06 17:25:00", "2018-05-06 22:20:00", "2018-05-07 02:00:00", "2018-05-07 07:40:00", "2018-05-07 07:40:00", "2018-05-07 08:05:00", "2018-05-07 08:55:00", "2018-05-07 09:15:00", "2018-05-07 12:40:00", "2018-05-07 13:55:00", "2018-05-07 16:10:00", "2018-05-07 21:25:00", "2018-05-08 02:00:00", "2018-05-08 19:10:00", "2018-05-09 10:20:00", "2018-05-09 17:50:00", "2018-05-10 14:35:00", "2018-05-10 17:10:00", "2018-05-11 08:15:00", "2018-05-12 03:10:00", "2018-05-12 06:35:00", "2018-05-12 11:20:00", "2018-05-12 16:45:00" ], "y": [ 100, 101.257768, 103.81538328271729, 106.01102673145512, 107.72263942476076, 108.92945184533079, 110.35282536753209, 112.48350778797412, 114.19843134770959, 116.00706841791227, 109.84784713086584, 112.6650709270923, 115.10620980518523, 116.27365727220284, 118.67659890454108, 120.70407110699226, 123.00131219534126, 125.25361259319946, 127.06695298147561, 120.64812264885235, 113.44310966331733, 116.71553498190924, 118.37469183073571, 119.91005893365708, 121.19506788561607, 122.5090539040758, 124.85414794080894, 127.13449159004874, 128.8473923940703, 130.2052699659241, 131.66056645601702, 133.39297330531895, 135.40558781153334, 137.3981649876445, 139.84472755073554, 142.6523607783789, 144.2043342987548, 149.80668999078154, 152.96925003477554, 154.84593339282466, 158.82014718091153, 149.72671859910065, 141.87962811881857, 134.51141467366818, 138.9019640968353, 131.076655257669, 124.10790327486704, 125.98311784479381, 129.60331202677878, 123.04185793210353, 125.469242470411, 127.54715239658016, 128.98530776248475, 130.97521956901892, 132.32790544168384, 134.1428210399091, 126.20299733824697, 127.81225971444596, 129.68947543842734, 131.08455420398178, 133.40565660766183, 134.8602785358976, 136.4377378653292, 139.3690521814028, 141.16887945186917, 143.67686035381277, 145.81395451454208, 147.78764116796683, 149.946564410688, 151.72833595107656, 153.47750269185465, 155.56840651932717, 157.3572393996869, 158.98874600851354, 161.2479093140212, 163.7764780919517, 165.94386488548975, 167.63723739527506, 169.8121092693254, 172.0162806363678, 173.75235494869037, 178.20130137238706, 180.49656977432366, 183.93012353175806, 173.3356343796522, 164.31676985340494, 166.00821053258653, 168.88290831109512, 171.67293839784855, 173.49550929853748, 175.26399066373972, 177.56408341897446, 179.45080301682862, 181.39457643043826, 183.30507308593926, 185.28407498209114, 187.2360630932757, 191.71172773240852, 181.67249963580673, 172.2415822368126, 163.60781963218417, 165.51094014778786, 167.24499826771626, 169.08698116023743, 171.12455368149003, 173.86352195034985, 176.01829081646542, 177.83577471902245, 180.12774708060968, 182.34811517160594, 184.27890636561932, 174.82121902346668, 165.98291551742372, 169.2403916481319, 160.60744434737245, 152.3844251065836, 144.5299664903731, 146.18608912679704, 147.9609622102424, 149.449807555606, 151.38546801258352, 153.46953271038024, 145.5942789373396, 138.0548641073037, 140.11414430172525, 141.56889061406943, 143.3453735006957, 145.81555258119414, 147.99474851665377, 149.54436156978954, 152.72573242717846, 155.01929264116094, 157.13821879822154, 159.5296016388873, 161.1790770985848, 162.93845632688829, 165.8699228292794, 157.24995652960516, 158.8709252490023, 161.1497999862498, 162.77326980475326, 164.49195369503687, 167.31931377160677, 169.17580521755963, 171.34160402650315, 174.6453323047883, 176.89783095690925, 179.18549316560538, 181.22792288275915, 183.57275304893233, 173.90785870957205, 175.75014639357616, 177.7894649747555, 182.04884897030962, 183.96911479315636, 174.20089014776383, 176.0121665491909, 178.03838164795022, 180.72904544327082, 182.58163382565343, 186.234677858196, 188.97402235827997, 191.34517957304115, 193.57120137341133, 196.92967720293612, 199.27080280638265, 201.98696348403507, 206.07847403232637, 208.5051531640788, 196.48047541152005, 198.6196899892438, 200.74143886896317, 203.61647381575955, 206.00492152375998, 208.77284897043594, 198.13278874041293, 200.7412802133123, 203.91244240957485, 206.56627720430967, 208.76279351597336, 211.08947155073236, 214.3688731449559, 217.32441324171384, 219.62901259598252, 208.4638730452086, 210.85398848130495, 213.3209274330391, 215.6333198867854, 218.21857579123963, 220.7430308387233, 224.47454829208186, 226.7322212642388, 229.0130703212018, 232.31773579632886, 237.01883618669586, 240.3249029039994, 244.14942619906654, 246.84264340245693, 250.02262584563272, 253.1188660404849, 256.11610221942084, 242.126572023729, 244.68975781289228, 248.23972660683202, 234.97151925866993, 237.49019777132517, 240.47539018476127, 243.20152020755958, 245.75471056707858, 250.2856336422204, 237.730535378975, 240.6345303565915, 244.05642797496665, 246.74916844005, 249.37174691179845, 251.92382235712873, 255.05797640021507, 259.3372218015888, 246.36299034766574, 232.57879872910098, 235.07650198704857, 239.713964276938, 242.306880711472, 244.94443472325491, 247.82244610070103, 251.53053901497202, 238.846621100591, 243.796731653698, 246.26640229721923, 249.79120838797127, 253.10171375394583, 255.7071529193975, 260.9565906323951, 264.01284637316814, 266.8602539627159, 252.14176879478515, 255.32473588435522, 242.4487834978806, 245.20283681324375, 247.71371876626807, 250.37566525095352, 252.96712349148714, 258.9209349429417, 261.5733624278468, 264.863900396783, 251.37415416662049, 238.10609088275788, 225.8624447266583, 214.41124362388567, 217.43553136810007, 219.88794976236053, 222.35116975767048, 226.00013255784134, 228.7891866337297, 231.66721961596193, 234.58405817794744, 237.91749060713434, 225.63905426858096, 228.8506877475128, 232.97128397932627, 235.66609310738204, 239.1259895034241, 241.76278396448046, 229.53955014020494, 217.07270168637905, 219.31377328295133, 221.7780574062415, 224.3016122591722, 212.62797167312706, 215.41540956265703, 218.32048454278623, 207.2205536890826, 196.58071696625643, 186.67277361815334, 188.7463086533155, 190.65313711111648, 192.8453202644985, 195.17487244876162, 197.2857940887261, 199.96906830983718, 188.80016394247693, 190.7788481886449, 193.48676315983454, 195.66251987669924, 198.1899533013277, 205.21722798682026, 194.8032806919179, 196.81380444325023, 198.97708731106428, 201.2428652712967, 203.41834491830977, 206.7278434074906, 209.1407790648566, 198.63924122805213, 200.8669465497537, 203.08984061374656, 205.65211343335784, 207.87398092341297, 197.0991075159027, 187.18671548918633, 191.42346965769408, 196.02430978010042, 198.42436870126886, 200.64319562969123, 202.71891570073495, 204.8075773417394, 207.2175972581382, 196.81163306259583, 199.03678538600155, 188.70869294871136, 191.21107211990548, 194.4506943909578, 196.5827956977741, 186.3568181548662, 188.42481976593075, 190.34223826886165, 192.25843261573812, 194.18755565118877, 196.1572136212877, 185.4069411078176, 187.38336241340224, 190.18856817590947, 192.42250407884688, 182.68803624732698, 173.3039802721465, 164.5137164411758, 166.4360937656714, 168.36831695263456, 170.207481528134, 172.04430790446634, 174.1855730810884, 176.12314197995744, 177.97750203354178, 180.15282671282168, 182.21471905122834, 184.15901934509822, 186.53414399985465, 177.0474912327478, 178.92366349734124, 181.0404753646822, 183.50990003594202, 186.50862246673634, 188.7874892608635, 191.0598525298506, 193.2333303062449, 195.41905434000452, 198.17206130602077, 201.35784563776716, 203.96872596670934, 206.798757364814, 208.98229374413972, 211.61329513963798, 216.39429124579144, 219.6189080883339, 225.54604686930523, 214.2445998215226, 216.96751371115627, 219.20625611690753, 222.1572962271932, 224.56467933045658, 227.24927821115483, 229.76585717050017, 232.13893868248, 238.22351151178202, 241.25258539876734, 243.6660183624761, 246.12574397139906, 248.98491782390647, 252.28224998914024, 256.22613299241544, 259.37771442822213, 262.55411616976164, 265.5914997180831, 268.9646684634876, 272.3631338768044, 275.14403228810136, 278.316398957338, 282.95832406582383, 285.91767765306514, 289.7161797759894, 275.1408774592571, 260.98805443970423, 264.1919646750504, 268.603930856329, 272.0923626294215, 275.0412833300574, 277.8121152282324, 262.39600702652757, 266.5984207729012, 269.5269697672968, 272.35229970423103, 275.9704673235258, 261.94974357587927, 248.5517869437166, 251.2806320415359, 254.18656691078024, 241.266312010153, 244.18504569567455, 247.10632418764928, 249.7746227553659, 252.48830164203778, 255.33438260162606, 259.4617735293474, 262.12685329847824, 265.55343319270366, 252.20664062994277, 255.8407189016429, 258.54515997300837, 261.7232022502998, 265.3991020086732, 268.37592715043434, 271.17342950738356, 273.93384756825685, 277.6582959892105, 280.9633848560203, 283.8705663821687, 289.58150850111315, 292.6100416872854, 295.58210528950644, 298.75471808170505, 301.7783040441643, 285.4856374360865, 288.4837761970202, 292.0282725009935, 295.1802825805157, 298.7022763027732, 302.6405582830058, 306.0851162724043, 290.60657865442977, 293.7819437452816, 297.825211756298, 301.41519388055633, 304.9186662592595, 308.36459174608206, 312.49697022184176, 316.27552108733977, 319.92059646787135, 324.656499428006, 328.2728709010895, 332.7941107801648, 337.78945022120826, 342.2220010785845, 346.31584887758714, 350.5375706754275, 355.12508741123816, 358.785468224712, 363.89139445298343, 369.06679614362366, 372.94892857756327, 376.83915512206653, 381.1634484897486, 385.1282535064217, 390.5659987074375, 395.8841171948774, 400.2333476124744, 379.8607538013072, 384.12815889140916, 388.92337282626943, 369.1483072454917, 350.2269573651202, 332.7143942093221, 336.3718037676833, 340.5703898948754, 322.88839755881696, 327.21420445635994, 330.8830053759917, 313.52505497312995, 297.0107873755369, 281.92481943603894, 267.8201771046178, 270.5400650862303, 273.9385109272246, 277.11180094088, 284.06640098890705, 289.9141010184164, 293.23825610069355, 297.898791405909, 301.408995423791, 305.3060690583028, 308.4105310786725, 311.8609201566948, 296.0585312689865, 299.68190873679885, 305.8929002063034, 309.12340759502115, 312.6524717005526, 317.13920975483967, 320.3229417390396, 325.1233429859233, 328.3753144457711, 311.41081850465196, 315.31780977469316, 318.7787349016021, 321.98131358391754, 326.9057537505064, 330.318852501229, 334.9148429511606, 338.44780939222596, 342.89107745961655, 348.41637970596076, 352.28146016262536, 359.9570073676092, 376.8098596925438, 381.1508826087374, 386.3699016026134, 393.36244340031266, 399.82313044495464, 403.9900671192954, 409.6618412277094, 413.90193960325803, 418.2778019671704, 422.63895873826897, 426.9053722350442, 432.1447861375386, 439.43039719454066, 445.0491915454846, 449.77057600284934, 458.56343784170923, 464.94439852125475, 469.70926030395617, 445.63267757885103, 423.28803123929885, 402.10864951390835, 407.16640025509975, 411.69540170174525, 416.192247650683, 394.43586449550315, 372.6001829752132, 353.8406989888705, 357.38080087570734, 363.2809041577966, 367.4297827862031, 371.7065295088148, 376.22290137376285, 380.1014020751701, 383.9541783048564, 387.9379179191091, 392.1608587977886, 396.20666472974773, 376.35324005640433, 381.1581305816072, 361.3362954924713, 342.52727790009146, 345.98879006509424, 349.7979225103248, 370.4164392386072, 377.8837383205061, 356.9375331191163, 362.81168622603565, 367.91228520119495, 375.3991935104766, 356.0404990337623, 337.53671113766865, 320.09886593930463, 323.70036550074957, 327.63956264762686, 332.1498390378472, 335.6330545418564, 339.9135305649727, 345.8648590269752, 350.25349326073683, 354.3485310126838, 359.0730174548522, 363.10692991046426, 367.3284292329498, 373.32314103920856, 354.3306398302773, 335.65851353620513, 339.4838793515719, 343.84586697929467, 347.38543352627283, 354.0618133300883, 358.13799244346853, 362.50385215207103, 366.3619226499092, 347.50031028706644, 330.12326189589794, 312.654594719952, 296.9664000588511, 300.3876430460251, 304.83505031840167, 308.259920882337, 312.42648527695104, 316.20979505482313, 320.05428639149153, 324.14238459917016, 327.56156812887605, 331.4932241188134, 334.9542321641417, 339.9000524718384, 344.56769935140323, 348.28331412626613, 351.9115590340096, 356.6172324235226, 360.323772856612, 364.05660823656143, 368.1127995457203, 349.4247397474948, 331.840386983369, 315.22407691787333, 299.26487452478597, 303.0781733942532, 306.18149385821596, 309.33426307136364, 292.922512090714, 277.77491779160465, 285.2316854607499, 288.37002409258685, 291.7919381464791 ] }, { "name": "Simple", "type": "scatter", "x": [ "2018-01-05 08:55:00", "2018-01-05 09:00:00", "2018-01-05 09:15:00", "2018-01-05 10:45:00", "2018-01-05 13:50:00", "2018-01-05 16:15:00", "2018-01-05 16:25:00", "2018-01-05 17:35:00", "2018-01-06 02:05:00", "2018-01-06 02:45:00", "2018-01-06 03:40:00", "2018-01-06 03:50:00", "2018-01-06 05:05:00", "2018-01-06 10:10:00", "2018-01-06 10:30:00", "2018-01-06 11:00:00", "2018-01-06 11:15:00", "2018-01-06 11:50:00", "2018-01-06 13:50:00", "2018-01-06 18:40:00", "2018-01-06 20:50:00", "2018-01-06 22:25:00", "2018-01-07 03:10:00", "2018-01-07 04:35:00", "2018-01-07 04:50:00", "2018-01-07 08:25:00", "2018-01-08 04:50:00", "2018-01-08 08:05:00", "2018-01-08 08:05:00", "2018-01-08 08:35:00", "2018-01-08 09:20:00", "2018-01-08 09:40:00", "2018-01-08 14:05:00", "2018-01-08 16:00:00", "2018-01-08 16:10:00", "2018-01-08 17:00:00", "2018-01-08 18:15:00", "2018-01-09 09:45:00", "2018-01-09 13:55:00", "2018-01-09 22:40:00", "2018-01-10 04:35:00", "2018-01-10 04:40:00", "2018-01-10 04:45:00", "2018-01-10 08:00:00", "2018-01-10 09:15:00", "2018-01-10 09:20:00", "2018-01-10 09:35:00", "2018-01-10 09:35:00", "2018-01-10 09:45:00", "2018-01-10 09:45:00", "2018-01-10 10:35:00", "2018-01-10 11:25:00", "2018-01-10 18:10:00", "2018-01-10 18:45:00", "2018-01-10 21:55:00", "2018-01-10 22:10:00", "2018-01-10 22:15:00", "2018-01-10 22:30:00", "2018-01-10 22:50:00", "2018-01-10 23:35:00", "2018-01-11 06:10:00", "2018-01-12 22:20:00", "2018-01-12 23:00:00", "2018-01-13 16:20:00", "2018-01-13 16:45:00", "2018-01-14", "2018-01-14 00:40:00", "2018-01-14 00:50:00", "2018-01-14 10:50:00", "2018-01-14 12:00:00", "2018-01-15 12:30:00", "2018-01-16 02:15:00", "2018-01-16 03:25:00", "2018-01-16 08:25:00", "2018-01-16 13:50:00", "2018-01-16 14:55:00", "2018-01-16 17:15:00", "2018-01-16 21:35:00", "2018-01-17 02:25:00", "2018-01-17 03:25:00", "2018-01-17 18:55:00", "2018-01-17 21:30:00", "2018-01-17 21:45:00", "2018-01-17 22:05:00", "2018-01-18 01:35:00", "2018-01-18 04:35:00", "2018-01-18 12:30:00", "2018-01-18 15:45:00", "2018-01-18 18:15:00", "2018-01-18 21:10:00", "2018-01-20 02:55:00", "2018-01-20 17:35:00", "2018-01-30 06:05:00", "2018-01-31 07:45:00", "2018-01-31 08:20:00", "2018-01-31 15:00:00", "2018-01-31 15:35:00", "2018-01-31 19:30:00", "2018-01-31 20:15:00", "2018-01-31 22:55:00", "2018-01-31 23:10:00", "2018-01-31 23:40:00", "2018-02-01 16:25:00", "2018-02-02 18:45:00", "2018-02-03 14:20:00", "2018-02-03 15:20:00", "2018-02-03 15:20:00", "2018-02-03 17:30:00", "2018-02-03 18:25:00", "2018-02-03 18:55:00", "2018-02-03 19:30:00", "2018-02-03 20:15:00", "2018-02-04 00:55:00", "2018-02-04 01:10:00", "2018-02-04 01:30:00", "2018-02-04 01:55:00", "2018-02-04 05:00:00", "2018-02-04 05:05:00", "2018-02-04 13:40:00", "2018-02-04 17:05:00", "2018-02-04 19:00:00", "2018-02-04 22:20:00", "2018-02-05 15:35:00", "2018-02-05 15:50:00", "2018-02-05 16:30:00", "2018-02-05 19:15:00", "2018-02-05 19:40:00", "2018-02-05 20:15:00", "2018-02-05 20:50:00", "2018-02-06 03:40:00", "2018-02-06 04:10:00", "2018-02-06 04:15:00", "2018-02-06 04:40:00", "2018-02-06 05:05:00", "2018-02-06 05:05:00", "2018-02-06 05:05:00", "2018-02-06 05:15:00", "2018-02-06 05:30:00", "2018-02-06 05:35:00", "2018-02-06 06:20:00", "2018-02-07 18:05:00", "2018-02-07 18:50:00", "2018-02-09 09:58:15.341000", "2018-02-09 09:58:15.428000", "2018-02-09 09:58:15.483000", "2018-02-09 10:33:15.483000", "2018-02-09 10:53:15.428000", "2018-02-09 10:53:15.990000", "2018-02-09 13:58:16.611000", "2018-02-09 13:58:16.690000", "2018-02-09 15:08:16.690000", "2018-02-09 16:58:15.341000", "2018-02-09 18:28:15.428000", "2018-02-09 19:33:15.428000", "2018-02-09 22:33:15.428000", "2018-02-10 00:23:15.428000", "2018-02-10 00:33:16.690000", "2018-02-10 00:53:15.428000", "2018-02-10 00:53:15.990000", "2018-02-10 01:08:16.611000", "2018-02-10 01:18:15.483000", "2018-02-10 01:28:16.611000", "2018-02-10 01:43:16.690000", "2018-02-10 02:58:16.611000", "2018-02-10 03:28:16.611000", "2018-02-10 07:00:00", "2018-02-10 17:45:00", "2018-02-11 13:55:00", "2018-02-11 14:15:00", "2018-02-11 14:45:00", "2018-02-11 15:00:00", "2018-02-11 19:10:00", "2018-02-11 19:40:00", "2018-02-12 12:25:00", "2018-02-12 12:45:00", "2018-02-12 13:50:00", "2018-02-12 14:05:00", "2018-02-12 17:25:00", "2018-02-12 22:10:00", "2018-02-12 22:30:00", "2018-02-13 07:35:00", "2018-02-13 10:15:00", "2018-02-13 10:30:00", "2018-02-13 11:00:00", "2018-02-13 20:55:00", "2018-02-14 00:30:00", "2018-02-14 01:05:00", "2018-02-14 02:40:00", "2018-02-14 10:15:00", "2018-02-14 10:30:00", "2018-02-14 10:40:00", "2018-02-14 11:05:00", "2018-02-14 13:35:00", "2018-02-14 13:45:00", "2018-02-14 14:15:00", "2018-02-14 20:35:00", "2018-02-15 00:25:00", "2018-02-15 01:15:00", "2018-02-15 02:00:00", "2018-02-15 03:25:00", "2018-02-20 00:25:00", "2018-02-20 00:35:00", "2018-02-20 01:55:00", "2018-02-20 02:10:00", "2018-02-20 06:05:00", "2018-02-20 16:30:00", "2018-02-20 22:00:00", "2018-02-21 01:20:00", "2018-02-21 09:10:00", "2018-02-21 17:00:00", "2018-02-24 04:00:00", "2018-03-03 06:00:00", "2018-03-03 11:40:00", "2018-03-04 07:20:00", "2018-03-04 10:15:00", "2018-03-09 20:30:00", "2018-03-14 21:50:00", "2018-03-15 08:40:00", "2018-03-15 08:50:00", "2018-03-15 10:15:00", "2018-03-16 18:45:00", "2018-03-16 21:15:00", "2018-03-17 18:50:00", "2018-03-17 20:35:00", "2018-03-18 00:30:00", "2018-03-18 02:50:00", "2018-03-18 04:00:00", "2018-03-18 10:30:00", "2018-03-18 10:45:00", "2018-03-18 13:20:00", "2018-03-18 13:45:00", "2018-03-18 13:45:00", "2018-03-18 14:10:00", "2018-03-18 14:10:00", "2018-03-18 14:30:00", "2018-03-18 15:15:00", "2018-03-18 17:50:00", "2018-03-18 21:20:00", "2018-03-18 21:40:00", "2018-03-19 00:25:00", "2018-03-19 00:25:00", "2018-03-19 06:25:00", "2018-03-19 08:55:00", "2018-03-19 10:30:00", "2018-03-19 13:45:00", "2018-03-19 14:00:00", "2018-03-19 14:10:00", "2018-03-19 17:40:00", "2018-03-19 20:25:00", "2018-03-19 22:20:00", "2018-03-19 22:40:00", "2018-03-19 23:20:00", "2018-03-19 23:35:00", "2018-03-20 01:30:00", "2018-03-20 11:25:00", "2018-03-20 16:55:00", "2018-03-20 20:00:00", "2018-03-22 15:30:00", "2018-03-22 16:55:00", "2018-03-22 17:50:00", "2018-03-23 03:25:00", "2018-03-23 17:10:00", "2018-03-23 18:15:00", "2018-03-24 05:45:00", "2018-03-24 07:45:00", "2018-03-24 18:55:00", "2018-03-29 20:40:00", "2018-03-29 22:00:00", "2018-03-30 03:25:00", "2018-03-30 04:50:00", "2018-03-31 16:15:00", "2018-04-03 16:20:00", "2018-04-03 18:00:00", "2018-04-03 18:50:00", "2018-04-03 23:25:00", "2018-04-15 01:55:00", "2018-04-15 02:55:00", "2018-04-15 04:45:00", "2018-04-15 11:20:00", "2018-04-16 20:40:00", "2018-04-17 00:15:00", "2018-04-17 06:55:00", "2018-04-17 08:10:00", "2018-04-17 17:00:00", "2018-04-18 05:15:00", "2018-04-18 05:25:00", "2018-05-03 21:55:00", "2018-05-03 23:20:00", "2018-05-06 00:55:00", "2018-05-06 02:00:00", "2018-05-06 09:05:00", "2018-05-06 10:30:00", "2018-05-06 22:20:00", "2018-05-06 23:05:00", "2018-05-07 09:10:00", "2018-05-07 09:20:00", "2018-05-07 09:30:00", "2018-05-07 09:55:00", "2018-05-07 09:55:00", "2018-05-07 14:00:00", "2018-05-08 05:05:00", "2018-05-08 09:45:00", "2018-05-11 00:10:00", "2018-05-11 06:55:00", "2018-05-11 07:40:00", "2018-05-12 10:00:00" ], "y": [ 100, 102.586367, 106.27442998860728, 107.8003968974619, 108.94909636672188, 110.06462180645687, 111.46419693347048, 113.09018982337322, 117.14363626113646, 119.1360679413022, 120.55320457443146, 122.78415012296544, 127.0800691702832, 128.36776134478015, 130.0942538204077, 132.30597712301068, 133.88161297374793, 135.78408274345006, 138.12601327920441, 140.31801233449954, 142.3508344586925, 144.44557396352755, 145.9128723262294, 150.57842912321698, 154.42501231497263, 108.838513953574, 80.76697150547935, 82.09374912280329, 83.50101412620374, 84.68914922119536, 86.66344045256122, 87.6811197008172, 88.84336275403223, 91.06278900573405, 92.7156724208608, 93.87499289743815, 96.61019946424301, 72.31308789231593, 73.06765905559291, 53.82666106190981, 40.36005993306694, 29.911800985822318, 22.219469272285227, 22.470989442748337, 22.754452210882725, 23.167063243713105, 23.469632503136236, 23.936617872993118, 24.311625205491584, 24.670967557933892, 24.960933334351907, 25.27209133711127, 25.593750724836323, 25.86054407739213, 26.162048540314277, 26.63466385423117, 26.96877600263125, 27.260427673209627, 27.604822831427676, 28.071503065010084, 28.64707779527468, 29.13104381931427, 29.517114629947258, 29.854518273516966, 31.389242926409633, 32.48688394553037, 32.97189200636258, 33.495728324548786, 34.61893723288305, 35.172830881496125, 35.55130601782661, 26.453808220355565, 26.827590478062067, 27.656072615480245, 27.941548000081923, 28.282588843612405, 28.57122143036401, 28.922825452667, 29.41236162714866, 29.73549259682769, 30.12682595243839, 31.043418664823577, 31.697873533641896, 32.2364673178313, 32.690273285216016, 33.25995490925909, 33.79648521108141, 34.294809654010876, 34.637998500114755, 35.00725341932537, 35.37906790839977, 35.861116199628015, 26.794971664019805, 20.058430153287286, 20.265152334447063, 15.1475808510347, 11.356388269588587, 11.488886658446358, 11.679736252283872, 11.797607332960382, 11.961834392149903, 12.12222082081004, 12.328599811951209, 12.49956087540153, 12.648338398668303, 12.816944417540688, 12.949976482258664, 13.13233131709406, 13.30682808873314, 13.596054126334248, 13.81000530500086, 14.035585803355767, 14.185940332003918, 14.344070015868942, 14.510447888067906, 14.673679108659318, 14.904569742907654, 15.171320553738909, 15.335778123681054, 15.511812153240445, 15.771591728851314, 15.966907751685078, 16.213720539321844, 16.39451843995818, 16.562098616986273, 16.848076373805775, 17.038721961378922, 17.337363560102062, 17.596681107475046, 17.785859154791666, 17.964990680279293, 18.232578677512333, 18.44788519353142, 18.808752577350425, 19.24632409949805, 19.477877202128834, 19.6971918665041, 19.9137845519312, 20.18951798179968, 20.648298935353058, 21.052067542265345, 21.292425102494978, 23.72999044519864, 25.21477737115415, 26.163844445355778, 26.491061257719398, 26.84647381269256, 27.13281373847819, 27.474409351570333, 27.938331238117208, 28.62427957249165, 29.039971665184016, 29.342601856302363, 29.698635304168125, 30.19207783276053, 30.61787670643595, 30.953110613779646, 31.33681063497686, 31.68630538346716, 32.01469528147423, 32.473617614513394, 33.45915359024509, 33.855169440308515, 34.47259835325242, 34.837874486841265, 35.347244275394544, 35.945610909827046, 36.91494397772465, 37.60876256468262, 38.06169542270261, 38.69534158007936, 39.231980572667794, 39.664950595064845, 40.681541859743035, 41.29015603265863, 41.8555549391622, 42.3011625708221, 42.76187764574132, 43.46439029740684, 44.40001954084152, 44.880480144296484, 45.3680567437313, 45.94006899885102, 46.69376314904824, 47.43337694838733, 48.15096757387955, 48.655667718621274, 50.60670063422337, 51.162399150078606, 51.9888867784288, 52.9312342208414, 53.869103175443826, 55.08618560029068, 56.438649510188185, 57.68148501105204, 58.34756426647657, 59.74646870836413, 60.44790181043531, 61.73834482724252, 62.428962917532466, 63.93845403776288, 64.58052910828643, 65.2914864661602, 66.11820073864607, 66.85137819363483, 67.75825524411705, 68.47167649292194, 69.2712277912142, 70.04153839121034, 70.96346784485387, 71.9683765455621, 53.82454356437915, 54.38886968260706, 55.05470529581459, 55.89854638138923, 41.80478607080494, 31.134432560653973, 31.477332256349392, 31.809444867386297, 32.43199769190827, 32.778059431440056, 33.13445068270978, 33.49185344693179, 33.8646261487595, 34.22976132082065, 34.606311971587374, 35.00367375785434, 35.384329258979086, 35.848244353811246, 36.24204377072185, 36.67768509672037, 37.0681553654832, 37.487446986039664, 38.317381574863596, 38.89668405772462, 39.316648443761146, 39.720621109023526, 40.51578464814917, 41.03780500839625, 42.31505210900192, 43.23759514262039, 43.80657033125283, 44.32967772954942, 44.82776377203475, 45.331638147218094, 45.82429921738739, 46.32425469440988, 46.824892959198586, 47.413807296701776, 47.97314134344795, 48.70009946240741, 49.672686713766176, 50.20220401158419, 50.78658577951328, 51.3965367376521, 52.03026734286543, 53.1140052610473, 53.73197715173865, 54.36325373314311, 54.948468723255026, 55.63685654560371, 56.28014545930381, 56.89772043986221, 57.80963158489597, 58.44783662137795, 59.032698989878334, 59.72402797611386, 60.52632055284623, 61.19129297360008, 61.90883431326711, 62.77535121814625, 63.70974286066947, 64.52493896415088, 65.21874724185925, 66.15636586595677, 49.59929111453424, 50.42900541605005, 51.00334135873345, 51.58803397343511, 52.22486606998256, 52.8680325298402, 53.53750782729011, 54.57163886385713, 55.29392342718888, 56.04487849534205, 57.035832091315946, 42.7530798600551, 32.04478306984248, 32.80258162480425, 33.1380956143856, 33.5683483867474, 33.9521621685318, 34.34535197295692, 34.69634017600232, 35.12259096040574, 35.47766841333451, 35.850070048358916, 36.44596596919503, 37.18630745431368, 37.677893705021354, 38.207873972107684, 38.78643861412402, 28.98169702410947, 29.457610397830866, 29.770175380750818, 30.129722292297807 ] } ], "layout": {} }, "text/html": [ "
" ], "text/vnd.plotly.v1+html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "result_list = []\n", "for strat in strat_list:\n", " stratResult = getCumulProfitForStrat( strat )\n", " result_list.append( stratResult )\n", "GraphRoundTripList( result_list, strat_list)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python [conda env:FreqTradeCcxt]", "language": "python", "name": "conda-env-FreqTradeCcxt-py" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.4" } }, "nbformat": 4, "nbformat_minor": 2 }