├── .ipynb_checkpoints └── Binance Historical Data -checkpoint.ipynb ├── Binance Historical Data .ipynb ├── README.md └── data └── raw └── Binance └── btc_usdt_1m.csv /.ipynb_checkpoints/Binance Historical Data -checkpoint.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Fetch historical data" 8 | ] 9 | }, 10 | { 11 | "cell_type": "markdown", 12 | "metadata": {}, 13 | "source": [ 14 | "Python script to fetch historical data from binance using ccxt" 15 | ] 16 | }, 17 | { 18 | "cell_type": "code", 19 | "execution_count": 1, 20 | "metadata": {}, 21 | "outputs": [ 22 | { 23 | "name": "stdout", 24 | "output_type": "stream", 25 | "text": [ 26 | "Collecting openpyxl\n", 27 | "Requirement already satisfied: ccxt in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (1.18.1220)\n", 28 | "Collecting et-xmlfile (from openpyxl)\n", 29 | "Collecting jdcal (from openpyxl)\n", 30 | " Using cached https://files.pythonhosted.org/packages/f0/da/572cbc0bc582390480bbd7c4e93d14dc46079778ed915b505dc494b37c57/jdcal-1.4.1-py2.py3-none-any.whl\n", 31 | "Requirement already satisfied: aiodns==1.1.1; python_version >= \"3.5.2\" in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from ccxt) (1.1.1)\n", 32 | "Requirement already satisfied: certifi>=2018.1.18 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from ccxt) (2019.9.11)\n", 33 | "Requirement already satisfied: requests>=2.18.4 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from ccxt) (2.22.0)\n", 34 | "Requirement already satisfied: aiohttp>=3.0.1; python_version >= \"3.5.2\" in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from ccxt) (3.6.2)\n", 35 | "Requirement already satisfied: yarl==1.1.0; python_version >= \"3.5.2\" in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from ccxt) (1.1.0)\n", 36 | "Requirement already satisfied: cryptography>=2.6.1 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from ccxt) (2.7)\n", 37 | "Requirement already satisfied: setuptools>=38.5.1 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from ccxt) (41.4.0)\n", 38 | "Requirement already satisfied: pycares>=1.0.0 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from aiodns==1.1.1; python_version >= \"3.5.2\"->ccxt) (3.0.0)\n", 39 | "Requirement already satisfied: chardet<3.1.0,>=3.0.2 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from requests>=2.18.4->ccxt) (3.0.4)\n", 40 | "Requirement already satisfied: idna<2.9,>=2.5 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from requests>=2.18.4->ccxt) (2.8)\n", 41 | "Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from requests>=2.18.4->ccxt) (1.25.6)\n", 42 | "Requirement already satisfied: multidict<5.0,>=4.5 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from aiohttp>=3.0.1; python_version >= \"3.5.2\"->ccxt) (4.5.2)\n", 43 | "Requirement already satisfied: async-timeout<4.0,>=3.0 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from aiohttp>=3.0.1; python_version >= \"3.5.2\"->ccxt) (3.0.1)\n", 44 | "Requirement already satisfied: attrs>=17.3.0 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from aiohttp>=3.0.1; python_version >= \"3.5.2\"->ccxt) (19.2.0)\n", 45 | "Requirement already satisfied: cffi!=1.11.3,>=1.8 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from cryptography>=2.6.1->ccxt) (1.12.3)\n", 46 | "Requirement already satisfied: six>=1.4.1 in c:\\users\\codeninja\\anaconda3\\envs\\tt_fresh\\lib\\site-packages (from cryptography>=2.6.1->ccxt) (1.12.0)\n", 47 | "Requirement already satisfied: asn1crypto>=0.21.0 in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from cryptography>=2.6.1->ccxt) (1.0.1)\n", 48 | "Requirement already satisfied: pycparser in c:\\users\\codeninja\\appdata\\roaming\\python\\python37\\site-packages (from cffi!=1.11.3,>=1.8->cryptography>=2.6.1->ccxt) (2.19)\n", 49 | "Installing collected packages: et-xmlfile, jdcal, openpyxl\n", 50 | "Successfully installed et-xmlfile-1.0.1 jdcal-1.4.1 openpyxl-3.0.0\n" 51 | ] 52 | } 53 | ], 54 | "source": [ 55 | "# Install openpyxl and CCXT\n", 56 | "!pip install openpyxl ccxt" 57 | ] 58 | }, 59 | { 60 | "cell_type": "code", 61 | "execution_count": 2, 62 | "metadata": {}, 63 | "outputs": [], 64 | "source": [ 65 | "import os\n", 66 | "from pathlib import Path\n", 67 | "\n", 68 | "import sys\n", 69 | "import csv\n", 70 | "\n", 71 | "# -----------------------------------------------------------------------------\n", 72 | "\n", 73 | "root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(''))))\n", 74 | "sys.path.append(root + '/python')\n", 75 | "\n", 76 | "import ccxt\n", 77 | "\n", 78 | "\n", 79 | "# -----------------------------------------------------------------------------\n", 80 | "\n", 81 | "def retry_fetch_ohlcv(exchange, max_retries, symbol, timeframe, since, limit):\n", 82 | " num_retries = 0\n", 83 | " try:\n", 84 | " num_retries += 1\n", 85 | " ohlcv = exchange.fetch_ohlcv(symbol, timeframe, since, limit)\n", 86 | " # print('Fetched', len(ohlcv), symbol, 'candles from', exchange.iso8601 (ohlcv[0][0]), 'to', exchange.iso8601 (ohlcv[-1][0]))\n", 87 | " return ohlcv\n", 88 | " except Exception:\n", 89 | " if num_retries > max_retries:\n", 90 | " raise # Exception('Failed to fetch', timeframe, symbol, 'OHLCV in', max_retries, 'attempts')\n", 91 | "\n", 92 | "\n", 93 | "def scrape_ohlcv(exchange, max_retries, symbol, timeframe, since, limit):\n", 94 | " earliest_timestamp = exchange.milliseconds()\n", 95 | " timeframe_duration_in_seconds = exchange.parse_timeframe(timeframe)\n", 96 | " timeframe_duration_in_ms = timeframe_duration_in_seconds * 1000\n", 97 | " timedelta = limit * timeframe_duration_in_ms\n", 98 | " all_ohlcv = []\n", 99 | " while True:\n", 100 | " fetch_since = earliest_timestamp - timedelta\n", 101 | " ohlcv = retry_fetch_ohlcv(exchange, max_retries, symbol, timeframe, fetch_since, limit)\n", 102 | " # if we have reached the beginning of history\n", 103 | " if ohlcv[0][0] >= earliest_timestamp:\n", 104 | " break\n", 105 | " earliest_timestamp = ohlcv[0][0]\n", 106 | " all_ohlcv = ohlcv + all_ohlcv\n", 107 | " print(len(all_ohlcv), symbol, 'candles in total from', exchange.iso8601(all_ohlcv[0][0]), 'to', exchange.iso8601(all_ohlcv[-1][0]))\n", 108 | " # if we have reached the checkpoint\n", 109 | " if fetch_since < since:\n", 110 | " break\n", 111 | " return all_ohlcv\n", 112 | "\n", 113 | "\n", 114 | "def write_to_csv(filename, exchange, data):\n", 115 | " p = Path(\"./data/raw/\", str(exchange))\n", 116 | " p.mkdir(parents=True, exist_ok=True)\n", 117 | " full_path = p / str(filename)\n", 118 | " with Path(full_path).open('w+', newline='') as output_file:\n", 119 | " csv_writer = csv.writer(output_file, delimiter=',', quotechar='\"', quoting=csv.QUOTE_MINIMAL)\n", 120 | " csv_writer.writerows(data)\n", 121 | "\n", 122 | "\n", 123 | "def scrape_candles_to_csv(filename, exchange_id, max_retries, symbol, timeframe, since, limit):\n", 124 | " # instantiate the exchange by id\n", 125 | " exchange = getattr(ccxt, exchange_id)({\n", 126 | " 'enableRateLimit': True, # required by the Manual\n", 127 | " })\n", 128 | " # convert since from string to milliseconds integer if needed\n", 129 | " if isinstance(since, str):\n", 130 | " since = exchange.parse8601(since)\n", 131 | " # preload all markets from the exchange\n", 132 | " exchange.load_markets()\n", 133 | " # fetch all candles\n", 134 | " ohlcv = scrape_ohlcv(exchange, max_retries, symbol, timeframe, since, limit)\n", 135 | " # save them to csv file\n", 136 | " write_to_csv(filename, exchange, ohlcv)\n", 137 | " print('Saved', len(ohlcv), 'candles from', exchange.iso8601(ohlcv[0][0]), 'to', exchange.iso8601(ohlcv[-1][0]), 'to', filename)\n" 138 | ] 139 | }, 140 | { 141 | "cell_type": "code", 142 | "execution_count": 3, 143 | "metadata": {}, 144 | "outputs": [ 145 | { 146 | "name": "stdout", 147 | "output_type": "stream", 148 | "text": [ 149 | "1000 BTC/USDT candles in total from 2019-10-24T03:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 150 | "2000 BTC/USDT candles in total from 2019-10-23T10:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 151 | "3000 BTC/USDT candles in total from 2019-10-22T18:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 152 | "4000 BTC/USDT candles in total from 2019-10-22T01:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 153 | "5000 BTC/USDT candles in total from 2019-10-21T08:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 154 | "6000 BTC/USDT candles in total from 2019-10-20T16:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 155 | "7000 BTC/USDT candles in total from 2019-10-19T23:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 156 | "8000 BTC/USDT candles in total from 2019-10-19T06:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 157 | "9000 BTC/USDT candles in total from 2019-10-18T14:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 158 | "10000 BTC/USDT candles in total from 2019-10-17T21:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 159 | "11000 BTC/USDT candles in total from 2019-10-17T04:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 160 | "12000 BTC/USDT candles in total from 2019-10-16T12:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 161 | "13000 BTC/USDT candles in total from 2019-10-15T19:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 162 | "14000 BTC/USDT candles in total from 2019-10-15T02:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 163 | "15000 BTC/USDT candles in total from 2019-10-14T10:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 164 | "16000 BTC/USDT candles in total from 2019-10-13T17:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 165 | "17000 BTC/USDT candles in total from 2019-10-13T00:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 166 | "18000 BTC/USDT candles in total from 2019-10-12T08:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 167 | "19000 BTC/USDT candles in total from 2019-10-11T15:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 168 | "20000 BTC/USDT candles in total from 2019-10-10T22:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 169 | "21000 BTC/USDT candles in total from 2019-10-10T06:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 170 | "22000 BTC/USDT candles in total from 2019-10-09T13:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 171 | "23000 BTC/USDT candles in total from 2019-10-08T20:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 172 | "24000 BTC/USDT candles in total from 2019-10-08T04:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 173 | "25000 BTC/USDT candles in total from 2019-10-07T11:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 174 | "26000 BTC/USDT candles in total from 2019-10-06T18:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 175 | "27000 BTC/USDT candles in total from 2019-10-06T02:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 176 | "28000 BTC/USDT candles in total from 2019-10-05T09:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 177 | "29000 BTC/USDT candles in total from 2019-10-04T16:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 178 | "30000 BTC/USDT candles in total from 2019-10-04T00:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 179 | "31000 BTC/USDT candles in total from 2019-10-03T07:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 180 | "32000 BTC/USDT candles in total from 2019-10-02T14:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 181 | "33000 BTC/USDT candles in total from 2019-10-01T22:07:00.000Z to 2019-10-24T20:06:00.000Z\n", 182 | "34000 BTC/USDT candles in total from 2019-10-01T05:27:00.000Z to 2019-10-24T20:06:00.000Z\n", 183 | "35000 BTC/USDT candles in total from 2019-09-30T12:47:00.000Z to 2019-10-24T20:06:00.000Z\n", 184 | "Saved 35000 candles from 2019-09-30T12:47:00.000Z to 2019-10-24T20:06:00.000Z to btc_usdt_1m.csv\n" 185 | ] 186 | } 187 | ], 188 | "source": [ 189 | "scrape_candles_to_csv('btc_usdt_1m.csv', 'binance', 3, 'BTC/USDT', '1m', '2019-10-0100:00:00Z', 1000)\n", 190 | "# scrape_candles_to_csv('./data/raw/binance/eth_btc_1m.csv', 'binance', 3, 'ETH/BTC', '1m', '2018-01-01T00:00:00Z', 1000)\n", 191 | "# scrape_candles_to_csv('./data/raw/binance/ltc_btc_1m.csv', 'binance', 3, 'LTC/BTC', '1m', '2018-01-01T00:00:00Z', 1000)\n", 192 | "# scrape_candles_to_csv('./data/raw/binance/xlm_btc_1m.csv', 'binance', 3, 'XLM/BTC', '1m', '2018-01-01T00:00:00Z', 1000)" 193 | ] 194 | }, 195 | { 196 | "cell_type": "code", 197 | "execution_count": null, 198 | "metadata": {}, 199 | "outputs": [], 200 | "source": [] 201 | } 202 | ], 203 | "metadata": { 204 | "kernelspec": { 205 | "display_name": "Python [conda env:tt_fresh] *", 206 | "language": "python", 207 | "name": "conda-env-tt_fresh-py" 208 | }, 209 | "language_info": { 210 | "codemirror_mode": { 211 | "name": "ipython", 212 | "version": 3 213 | }, 214 | "file_extension": ".py", 215 | "mimetype": "text/x-python", 216 | "name": "python", 217 | "nbconvert_exporter": "python", 218 | "pygments_lexer": "ipython3", 219 | "version": "3.7.4" 220 | } 221 | }, 222 | "nbformat": 4, 223 | "nbformat_minor": 2 224 | } 225 | -------------------------------------------------------------------------------- /Binance Historical Data .ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Fetch historical data" 8 | ] 9 | }, 10 | { 11 | "cell_type": "markdown", 12 | "metadata": {}, 13 | "source": [ 14 | "Python script to fetch historical data from binance using ccxt" 15 | ] 16 | }, 17 | { 18 | "cell_type": "code", 19 | "execution_count": 1, 20 | "metadata": {}, 21 | "outputs": [], 22 | "source": [ 23 | "# Install openpyxl and CCXT\n", 24 | "# !pip install openpyxl ccxt" 25 | ] 26 | }, 27 | { 28 | "cell_type": "code", 29 | "execution_count": 2, 30 | "metadata": {}, 31 | "outputs": [], 32 | "source": [ 33 | "import os\n", 34 | "from pathlib import Path\n", 35 | "\n", 36 | "import sys\n", 37 | "import csv\n", 38 | "\n", 39 | "# -----------------------------------------------------------------------------\n", 40 | "\n", 41 | "root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(''))))\n", 42 | "sys.path.append(root + '/python')\n", 43 | "\n", 44 | "import ccxt\n", 45 | "\n", 46 | "\n", 47 | "# -----------------------------------------------------------------------------\n", 48 | "\n", 49 | "def retry_fetch_ohlcv(exchange, max_retries, symbol, timeframe, since, limit):\n", 50 | " num_retries = 0\n", 51 | " try:\n", 52 | " num_retries += 1\n", 53 | " ohlcv = exchange.fetch_ohlcv(symbol, timeframe, since, limit)\n", 54 | " # print('Fetched', len(ohlcv), symbol, 'candles from', exchange.iso8601 (ohlcv[0][0]), 'to', exchange.iso8601 (ohlcv[-1][0]))\n", 55 | " return ohlcv\n", 56 | " except Exception:\n", 57 | " if num_retries > max_retries:\n", 58 | " raise # Exception('Failed to fetch', timeframe, symbol, 'OHLCV in', max_retries, 'attempts')\n", 59 | "\n", 60 | "\n", 61 | "def scrape_ohlcv(exchange, max_retries, symbol, timeframe, since, limit):\n", 62 | " earliest_timestamp = exchange.milliseconds()\n", 63 | " timeframe_duration_in_seconds = exchange.parse_timeframe(timeframe)\n", 64 | " timeframe_duration_in_ms = timeframe_duration_in_seconds * 1000\n", 65 | " timedelta = limit * timeframe_duration_in_ms\n", 66 | " all_ohlcv = []\n", 67 | " while True:\n", 68 | " fetch_since = earliest_timestamp - timedelta\n", 69 | " ohlcv = retry_fetch_ohlcv(exchange, max_retries, symbol, timeframe, fetch_since, limit)\n", 70 | " # if we have reached the beginning of history\n", 71 | " if ohlcv[0][0] >= earliest_timestamp:\n", 72 | " break\n", 73 | " earliest_timestamp = ohlcv[0][0]\n", 74 | " all_ohlcv = ohlcv + all_ohlcv\n", 75 | " print(len(all_ohlcv), symbol, 'candles in total from', exchange.iso8601(all_ohlcv[0][0]), 'to', exchange.iso8601(all_ohlcv[-1][0]))\n", 76 | " # if we have reached the checkpoint\n", 77 | " if fetch_since < since:\n", 78 | " break\n", 79 | " return all_ohlcv\n", 80 | "\n", 81 | "\n", 82 | "def write_to_csv(filename, exchange, data):\n", 83 | " p = Path(\"./data/raw/\", str(exchange))\n", 84 | " p.mkdir(parents=True, exist_ok=True)\n", 85 | " full_path = p / str(filename)\n", 86 | " with Path(full_path).open('w+', newline='') as output_file:\n", 87 | " csv_writer = csv.writer(output_file, delimiter=',', quotechar='\"', quoting=csv.QUOTE_MINIMAL)\n", 88 | " csv_writer.writerows(data)\n", 89 | "\n", 90 | "\n", 91 | "def scrape_candles_to_csv(filename, exchange_id, max_retries, symbol, timeframe, since, limit):\n", 92 | " # instantiate the exchange by id\n", 93 | " exchange = getattr(ccxt, exchange_id)({\n", 94 | " 'enableRateLimit': True, # required by the Manual\n", 95 | " })\n", 96 | " # convert since from string to milliseconds integer if needed\n", 97 | " if isinstance(since, str):\n", 98 | " since = exchange.parse8601(since)\n", 99 | " # preload all markets from the exchange\n", 100 | " exchange.load_markets()\n", 101 | " # fetch all candles\n", 102 | " ohlcv = scrape_ohlcv(exchange, max_retries, symbol, timeframe, since, limit)\n", 103 | " # save them to csv file\n", 104 | " write_to_csv(filename, exchange, ohlcv)\n", 105 | " print('Saved', len(ohlcv), 'candles from', exchange.iso8601(ohlcv[0][0]), 'to', exchange.iso8601(ohlcv[-1][0]), 'to', filename)\n" 106 | ] 107 | }, 108 | { 109 | "cell_type": "code", 110 | "execution_count": 9, 111 | "metadata": {}, 112 | "outputs": [ 113 | { 114 | "name": "stdout", 115 | "output_type": "stream", 116 | "text": [ 117 | "1000 BTC/USDT candles in total from 2019-10-27T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 118 | "2000 BTC/USDT candles in total from 2019-10-26T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 119 | "3000 BTC/USDT candles in total from 2019-10-26T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 120 | "4000 BTC/USDT candles in total from 2019-10-25T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 121 | "5000 BTC/USDT candles in total from 2019-10-24T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 122 | "6000 BTC/USDT candles in total from 2019-10-24T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 123 | "7000 BTC/USDT candles in total from 2019-10-23T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 124 | "8000 BTC/USDT candles in total from 2019-10-22T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 125 | "9000 BTC/USDT candles in total from 2019-10-21T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 126 | "10000 BTC/USDT candles in total from 2019-10-21T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 127 | "11000 BTC/USDT candles in total from 2019-10-20T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 128 | "12000 BTC/USDT candles in total from 2019-10-19T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 129 | "13000 BTC/USDT candles in total from 2019-10-19T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 130 | "14000 BTC/USDT candles in total from 2019-10-18T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 131 | "15000 BTC/USDT candles in total from 2019-10-17T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 132 | "16000 BTC/USDT candles in total from 2019-10-17T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 133 | "17000 BTC/USDT candles in total from 2019-10-16T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 134 | "18000 BTC/USDT candles in total from 2019-10-15T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 135 | "19000 BTC/USDT candles in total from 2019-10-14T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 136 | "20000 BTC/USDT candles in total from 2019-10-14T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 137 | "21000 BTC/USDT candles in total from 2019-10-13T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 138 | "22000 BTC/USDT candles in total from 2019-10-12T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 139 | "23000 BTC/USDT candles in total from 2019-10-12T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 140 | "24000 BTC/USDT candles in total from 2019-10-11T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 141 | "25000 BTC/USDT candles in total from 2019-10-10T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 142 | "26000 BTC/USDT candles in total from 2019-10-10T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 143 | "27000 BTC/USDT candles in total from 2019-10-09T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 144 | "28000 BTC/USDT candles in total from 2019-10-08T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 145 | "29000 BTC/USDT candles in total from 2019-10-08T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 146 | "30000 BTC/USDT candles in total from 2019-10-07T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 147 | "31000 BTC/USDT candles in total from 2019-10-06T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 148 | "32000 BTC/USDT candles in total from 2019-10-05T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 149 | "33000 BTC/USDT candles in total from 2019-10-05T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 150 | "34000 BTC/USDT candles in total from 2019-10-04T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 151 | "35000 BTC/USDT candles in total from 2019-10-03T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 152 | "36000 BTC/USDT candles in total from 2019-10-03T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 153 | "37000 BTC/USDT candles in total from 2019-10-02T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 154 | "38000 BTC/USDT candles in total from 2019-10-01T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 155 | "39000 BTC/USDT candles in total from 2019-10-01T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 156 | "40000 BTC/USDT candles in total from 2019-09-30T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 157 | "41000 BTC/USDT candles in total from 2019-09-29T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 158 | "42000 BTC/USDT candles in total from 2019-09-29T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 159 | "43000 BTC/USDT candles in total from 2019-09-28T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 160 | "44000 BTC/USDT candles in total from 2019-09-27T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 161 | "45000 BTC/USDT candles in total from 2019-09-26T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 162 | "46000 BTC/USDT candles in total from 2019-09-26T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 163 | "47000 BTC/USDT candles in total from 2019-09-25T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 164 | "48000 BTC/USDT candles in total from 2019-09-24T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 165 | "49000 BTC/USDT candles in total from 2019-09-24T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 166 | "50000 BTC/USDT candles in total from 2019-09-23T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 167 | "51000 BTC/USDT candles in total from 2019-09-22T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 168 | "52000 BTC/USDT candles in total from 2019-09-22T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 169 | "53000 BTC/USDT candles in total from 2019-09-21T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 170 | "54000 BTC/USDT candles in total from 2019-09-20T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 171 | "55000 BTC/USDT candles in total from 2019-09-19T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 172 | "56000 BTC/USDT candles in total from 2019-09-19T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 173 | "57000 BTC/USDT candles in total from 2019-09-18T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 174 | "58000 BTC/USDT candles in total from 2019-09-17T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 175 | "59000 BTC/USDT candles in total from 2019-09-17T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 176 | "60000 BTC/USDT candles in total from 2019-09-16T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 177 | "61000 BTC/USDT candles in total from 2019-09-15T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 178 | "62000 BTC/USDT candles in total from 2019-09-15T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 179 | "63000 BTC/USDT candles in total from 2019-09-14T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 180 | "64000 BTC/USDT candles in total from 2019-09-13T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 181 | "65000 BTC/USDT candles in total from 2019-09-13T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 182 | "66000 BTC/USDT candles in total from 2019-09-12T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 183 | "67000 BTC/USDT candles in total from 2019-09-11T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 184 | "68000 BTC/USDT candles in total from 2019-09-10T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 185 | "69000 BTC/USDT candles in total from 2019-09-10T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 186 | "70000 BTC/USDT candles in total from 2019-09-09T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 187 | "71000 BTC/USDT candles in total from 2019-09-08T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 188 | "72000 BTC/USDT candles in total from 2019-09-08T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 189 | "73000 BTC/USDT candles in total from 2019-09-07T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 190 | "74000 BTC/USDT candles in total from 2019-09-06T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 191 | "75000 BTC/USDT candles in total from 2019-09-06T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 192 | "76000 BTC/USDT candles in total from 2019-09-05T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 193 | "77000 BTC/USDT candles in total from 2019-09-04T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 194 | "78000 BTC/USDT candles in total from 2019-09-04T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 195 | "79000 BTC/USDT candles in total from 2019-09-03T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 196 | "80000 BTC/USDT candles in total from 2019-09-02T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 197 | "81000 BTC/USDT candles in total from 2019-09-01T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 198 | "82000 BTC/USDT candles in total from 2019-09-01T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 199 | "83000 BTC/USDT candles in total from 2019-08-31T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 200 | "84000 BTC/USDT candles in total from 2019-08-30T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 201 | "85000 BTC/USDT candles in total from 2019-08-30T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 202 | "86000 BTC/USDT candles in total from 2019-08-29T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 203 | "87000 BTC/USDT candles in total from 2019-08-28T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 204 | "88000 BTC/USDT candles in total from 2019-08-28T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 205 | "89000 BTC/USDT candles in total from 2019-08-27T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 206 | "90000 BTC/USDT candles in total from 2019-08-26T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 207 | "91000 BTC/USDT candles in total from 2019-08-25T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 208 | "92000 BTC/USDT candles in total from 2019-08-25T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n" 209 | ] 210 | }, 211 | { 212 | "name": "stdout", 213 | "output_type": "stream", 214 | "text": [ 215 | "93000 BTC/USDT candles in total from 2019-08-24T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 216 | "94000 BTC/USDT candles in total from 2019-08-23T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 217 | "95000 BTC/USDT candles in total from 2019-08-23T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 218 | "96000 BTC/USDT candles in total from 2019-08-22T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 219 | "97000 BTC/USDT candles in total from 2019-08-21T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 220 | "98000 BTC/USDT candles in total from 2019-08-21T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 221 | "99000 BTC/USDT candles in total from 2019-08-20T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 222 | "100000 BTC/USDT candles in total from 2019-08-19T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 223 | "101000 BTC/USDT candles in total from 2019-08-19T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 224 | "102000 BTC/USDT candles in total from 2019-08-18T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 225 | "103000 BTC/USDT candles in total from 2019-08-17T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 226 | "104000 BTC/USDT candles in total from 2019-08-16T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 227 | "105000 BTC/USDT candles in total from 2019-08-16T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 228 | "106000 BTC/USDT candles in total from 2019-08-15T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 229 | "107000 BTC/USDT candles in total from 2019-08-14T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 230 | "108000 BTC/USDT candles in total from 2019-08-14T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 231 | "109000 BTC/USDT candles in total from 2019-08-13T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 232 | "110000 BTC/USDT candles in total from 2019-08-12T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 233 | "111000 BTC/USDT candles in total from 2019-08-12T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 234 | "112000 BTC/USDT candles in total from 2019-08-11T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 235 | "113000 BTC/USDT candles in total from 2019-08-10T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 236 | "114000 BTC/USDT candles in total from 2019-08-10T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 237 | "115000 BTC/USDT candles in total from 2019-08-09T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 238 | "116000 BTC/USDT candles in total from 2019-08-08T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 239 | "117000 BTC/USDT candles in total from 2019-08-07T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 240 | "118000 BTC/USDT candles in total from 2019-08-07T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 241 | "119000 BTC/USDT candles in total from 2019-08-06T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 242 | "120000 BTC/USDT candles in total from 2019-08-05T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 243 | "121000 BTC/USDT candles in total from 2019-08-05T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 244 | "122000 BTC/USDT candles in total from 2019-08-04T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 245 | "123000 BTC/USDT candles in total from 2019-08-03T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 246 | "124000 BTC/USDT candles in total from 2019-08-03T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 247 | "125000 BTC/USDT candles in total from 2019-08-02T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 248 | "126000 BTC/USDT candles in total from 2019-08-01T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 249 | "127000 BTC/USDT candles in total from 2019-07-31T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 250 | "128000 BTC/USDT candles in total from 2019-07-31T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 251 | "129000 BTC/USDT candles in total from 2019-07-30T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 252 | "130000 BTC/USDT candles in total from 2019-07-29T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 253 | "131000 BTC/USDT candles in total from 2019-07-29T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 254 | "132000 BTC/USDT candles in total from 2019-07-28T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 255 | "133000 BTC/USDT candles in total from 2019-07-27T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 256 | "134000 BTC/USDT candles in total from 2019-07-27T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 257 | "135000 BTC/USDT candles in total from 2019-07-26T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 258 | "136000 BTC/USDT candles in total from 2019-07-25T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 259 | "137000 BTC/USDT candles in total from 2019-07-25T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 260 | "138000 BTC/USDT candles in total from 2019-07-24T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 261 | "139000 BTC/USDT candles in total from 2019-07-23T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 262 | "140000 BTC/USDT candles in total from 2019-07-22T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 263 | "141000 BTC/USDT candles in total from 2019-07-22T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 264 | "142000 BTC/USDT candles in total from 2019-07-21T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 265 | "143000 BTC/USDT candles in total from 2019-07-20T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 266 | "144000 BTC/USDT candles in total from 2019-07-20T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 267 | "145000 BTC/USDT candles in total from 2019-07-19T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 268 | "146000 BTC/USDT candles in total from 2019-07-18T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 269 | "147000 BTC/USDT candles in total from 2019-07-18T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 270 | "148000 BTC/USDT candles in total from 2019-07-17T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 271 | "149000 BTC/USDT candles in total from 2019-07-16T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 272 | "150000 BTC/USDT candles in total from 2019-07-16T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 273 | "151000 BTC/USDT candles in total from 2019-07-15T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 274 | "152000 BTC/USDT candles in total from 2019-07-14T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 275 | "153000 BTC/USDT candles in total from 2019-07-13T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 276 | "154000 BTC/USDT candles in total from 2019-07-13T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 277 | "155000 BTC/USDT candles in total from 2019-07-12T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 278 | "156000 BTC/USDT candles in total from 2019-07-11T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 279 | "157000 BTC/USDT candles in total from 2019-07-11T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 280 | "158000 BTC/USDT candles in total from 2019-07-10T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 281 | "159000 BTC/USDT candles in total from 2019-07-09T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 282 | "160000 BTC/USDT candles in total from 2019-07-09T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 283 | "161000 BTC/USDT candles in total from 2019-07-08T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 284 | "162000 BTC/USDT candles in total from 2019-07-07T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 285 | "163000 BTC/USDT candles in total from 2019-07-06T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 286 | "164000 BTC/USDT candles in total from 2019-07-06T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 287 | "165000 BTC/USDT candles in total from 2019-07-05T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 288 | "166000 BTC/USDT candles in total from 2019-07-04T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 289 | "167000 BTC/USDT candles in total from 2019-07-04T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 290 | "168000 BTC/USDT candles in total from 2019-07-03T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 291 | "169000 BTC/USDT candles in total from 2019-07-02T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 292 | "170000 BTC/USDT candles in total from 2019-07-02T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 293 | "171000 BTC/USDT candles in total from 2019-07-01T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 294 | "172000 BTC/USDT candles in total from 2019-06-30T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 295 | "173000 BTC/USDT candles in total from 2019-06-30T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 296 | "174000 BTC/USDT candles in total from 2019-06-29T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 297 | "175000 BTC/USDT candles in total from 2019-06-28T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 298 | "176000 BTC/USDT candles in total from 2019-06-27T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 299 | "177000 BTC/USDT candles in total from 2019-06-27T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 300 | "178000 BTC/USDT candles in total from 2019-06-26T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 301 | "179000 BTC/USDT candles in total from 2019-06-25T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 302 | "180000 BTC/USDT candles in total from 2019-06-25T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 303 | "181000 BTC/USDT candles in total from 2019-06-24T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 304 | "182000 BTC/USDT candles in total from 2019-06-23T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 305 | "183000 BTC/USDT candles in total from 2019-06-23T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n" 306 | ] 307 | }, 308 | { 309 | "name": "stdout", 310 | "output_type": "stream", 311 | "text": [ 312 | "184000 BTC/USDT candles in total from 2019-06-22T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 313 | "185000 BTC/USDT candles in total from 2019-06-21T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 314 | "186000 BTC/USDT candles in total from 2019-06-21T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 315 | "187000 BTC/USDT candles in total from 2019-06-20T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 316 | "188000 BTC/USDT candles in total from 2019-06-19T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 317 | "189000 BTC/USDT candles in total from 2019-06-18T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 318 | "190000 BTC/USDT candles in total from 2019-06-18T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 319 | "191000 BTC/USDT candles in total from 2019-06-17T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 320 | "192000 BTC/USDT candles in total from 2019-06-16T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 321 | "193000 BTC/USDT candles in total from 2019-06-16T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 322 | "194000 BTC/USDT candles in total from 2019-06-15T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 323 | "195000 BTC/USDT candles in total from 2019-06-14T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 324 | "196000 BTC/USDT candles in total from 2019-06-14T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 325 | "197000 BTC/USDT candles in total from 2019-06-13T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 326 | "198000 BTC/USDT candles in total from 2019-06-12T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 327 | "199000 BTC/USDT candles in total from 2019-06-11T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 328 | "200000 BTC/USDT candles in total from 2019-06-11T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 329 | "201000 BTC/USDT candles in total from 2019-06-10T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 330 | "202000 BTC/USDT candles in total from 2019-06-09T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 331 | "203000 BTC/USDT candles in total from 2019-06-09T05:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 332 | "204000 BTC/USDT candles in total from 2019-06-08T12:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 333 | "205000 BTC/USDT candles in total from 2019-06-07T19:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 334 | "206000 BTC/USDT candles in total from 2019-06-07T03:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 335 | "207000 BTC/USDT candles in total from 2019-06-06T10:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 336 | "208000 BTC/USDT candles in total from 2019-06-05T17:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 337 | "209000 BTC/USDT candles in total from 2019-06-05T01:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 338 | "210000 BTC/USDT candles in total from 2019-06-04T08:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 339 | "211000 BTC/USDT candles in total from 2019-06-03T15:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 340 | "212000 BTC/USDT candles in total from 2019-06-02T23:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 341 | "213000 BTC/USDT candles in total from 2019-06-02T06:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 342 | "214000 BTC/USDT candles in total from 2019-06-01T13:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 343 | "215000 BTC/USDT candles in total from 2019-05-31T21:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 344 | "216000 BTC/USDT candles in total from 2019-05-31T04:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 345 | "217000 BTC/USDT candles in total from 2019-05-30T11:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 346 | "218000 BTC/USDT candles in total from 2019-05-29T19:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 347 | "219000 BTC/USDT candles in total from 2019-05-29T02:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 348 | "220000 BTC/USDT candles in total from 2019-05-28T09:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 349 | "221000 BTC/USDT candles in total from 2019-05-27T17:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 350 | "222000 BTC/USDT candles in total from 2019-05-27T00:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 351 | "223000 BTC/USDT candles in total from 2019-05-26T07:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 352 | "224000 BTC/USDT candles in total from 2019-05-25T15:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 353 | "225000 BTC/USDT candles in total from 2019-05-24T22:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 354 | "226000 BTC/USDT candles in total from 2019-05-24T05:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 355 | "227000 BTC/USDT candles in total from 2019-05-23T13:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 356 | "228000 BTC/USDT candles in total from 2019-05-22T20:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 357 | "229000 BTC/USDT candles in total from 2019-05-22T03:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 358 | "230000 BTC/USDT candles in total from 2019-05-21T11:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 359 | "231000 BTC/USDT candles in total from 2019-05-20T18:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 360 | "232000 BTC/USDT candles in total from 2019-05-20T01:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 361 | "233000 BTC/USDT candles in total from 2019-05-19T09:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 362 | "234000 BTC/USDT candles in total from 2019-05-18T16:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 363 | "235000 BTC/USDT candles in total from 2019-05-17T23:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 364 | "236000 BTC/USDT candles in total from 2019-05-17T07:11:00.000Z to 2019-10-28T04:30:00.000Z\n", 365 | "237000 BTC/USDT candles in total from 2019-05-16T14:31:00.000Z to 2019-10-28T04:30:00.000Z\n", 366 | "238000 BTC/USDT candles in total from 2019-05-15T21:51:00.000Z to 2019-10-28T04:30:00.000Z\n", 367 | "239000 BTC/USDT candles in total from 2019-05-15T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 368 | "240000 BTC/USDT candles in total from 2019-05-14T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 369 | "241000 BTC/USDT candles in total from 2019-05-14T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 370 | "242000 BTC/USDT candles in total from 2019-05-13T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 371 | "243000 BTC/USDT candles in total from 2019-05-12T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 372 | "244000 BTC/USDT candles in total from 2019-05-12T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 373 | "245000 BTC/USDT candles in total from 2019-05-11T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 374 | "246000 BTC/USDT candles in total from 2019-05-10T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 375 | "247000 BTC/USDT candles in total from 2019-05-09T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 376 | "248000 BTC/USDT candles in total from 2019-05-09T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 377 | "249000 BTC/USDT candles in total from 2019-05-08T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 378 | "250000 BTC/USDT candles in total from 2019-05-07T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 379 | "251000 BTC/USDT candles in total from 2019-05-07T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 380 | "252000 BTC/USDT candles in total from 2019-05-06T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 381 | "253000 BTC/USDT candles in total from 2019-05-05T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 382 | "254000 BTC/USDT candles in total from 2019-05-05T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 383 | "255000 BTC/USDT candles in total from 2019-05-04T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 384 | "256000 BTC/USDT candles in total from 2019-05-03T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 385 | "257000 BTC/USDT candles in total from 2019-05-03T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 386 | "258000 BTC/USDT candles in total from 2019-05-02T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 387 | "259000 BTC/USDT candles in total from 2019-05-01T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 388 | "260000 BTC/USDT candles in total from 2019-04-30T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 389 | "261000 BTC/USDT candles in total from 2019-04-30T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 390 | "262000 BTC/USDT candles in total from 2019-04-29T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 391 | "263000 BTC/USDT candles in total from 2019-04-28T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 392 | "264000 BTC/USDT candles in total from 2019-04-28T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 393 | "265000 BTC/USDT candles in total from 2019-04-27T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 394 | "266000 BTC/USDT candles in total from 2019-04-26T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 395 | "267000 BTC/USDT candles in total from 2019-04-26T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 396 | "268000 BTC/USDT candles in total from 2019-04-25T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 397 | "269000 BTC/USDT candles in total from 2019-04-24T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 398 | "270000 BTC/USDT candles in total from 2019-04-24T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 399 | "271000 BTC/USDT candles in total from 2019-04-23T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 400 | "272000 BTC/USDT candles in total from 2019-04-22T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 401 | "273000 BTC/USDT candles in total from 2019-04-21T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 402 | "274000 BTC/USDT candles in total from 2019-04-21T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n" 403 | ] 404 | }, 405 | { 406 | "name": "stdout", 407 | "output_type": "stream", 408 | "text": [ 409 | "275000 BTC/USDT candles in total from 2019-04-20T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 410 | "276000 BTC/USDT candles in total from 2019-04-19T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 411 | "277000 BTC/USDT candles in total from 2019-04-19T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 412 | "278000 BTC/USDT candles in total from 2019-04-18T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 413 | "279000 BTC/USDT candles in total from 2019-04-17T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 414 | "280000 BTC/USDT candles in total from 2019-04-17T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 415 | "281000 BTC/USDT candles in total from 2019-04-16T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 416 | "282000 BTC/USDT candles in total from 2019-04-15T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 417 | "283000 BTC/USDT candles in total from 2019-04-14T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 418 | "284000 BTC/USDT candles in total from 2019-04-14T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 419 | "285000 BTC/USDT candles in total from 2019-04-13T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 420 | "286000 BTC/USDT candles in total from 2019-04-12T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 421 | "287000 BTC/USDT candles in total from 2019-04-12T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 422 | "288000 BTC/USDT candles in total from 2019-04-11T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 423 | "289000 BTC/USDT candles in total from 2019-04-10T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 424 | "290000 BTC/USDT candles in total from 2019-04-10T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 425 | "291000 BTC/USDT candles in total from 2019-04-09T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 426 | "292000 BTC/USDT candles in total from 2019-04-08T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 427 | "293000 BTC/USDT candles in total from 2019-04-08T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 428 | "294000 BTC/USDT candles in total from 2019-04-07T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 429 | "295000 BTC/USDT candles in total from 2019-04-06T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 430 | "296000 BTC/USDT candles in total from 2019-04-05T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 431 | "297000 BTC/USDT candles in total from 2019-04-05T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 432 | "298000 BTC/USDT candles in total from 2019-04-04T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 433 | "299000 BTC/USDT candles in total from 2019-04-03T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 434 | "300000 BTC/USDT candles in total from 2019-04-03T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 435 | "301000 BTC/USDT candles in total from 2019-04-02T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 436 | "302000 BTC/USDT candles in total from 2019-04-01T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 437 | "303000 BTC/USDT candles in total from 2019-04-01T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 438 | "304000 BTC/USDT candles in total from 2019-03-31T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 439 | "305000 BTC/USDT candles in total from 2019-03-30T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 440 | "306000 BTC/USDT candles in total from 2019-03-30T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 441 | "307000 BTC/USDT candles in total from 2019-03-29T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 442 | "308000 BTC/USDT candles in total from 2019-03-28T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 443 | "309000 BTC/USDT candles in total from 2019-03-27T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 444 | "310000 BTC/USDT candles in total from 2019-03-27T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 445 | "311000 BTC/USDT candles in total from 2019-03-26T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 446 | "312000 BTC/USDT candles in total from 2019-03-25T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 447 | "313000 BTC/USDT candles in total from 2019-03-25T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 448 | "314000 BTC/USDT candles in total from 2019-03-24T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 449 | "315000 BTC/USDT candles in total from 2019-03-23T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 450 | "316000 BTC/USDT candles in total from 2019-03-23T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 451 | "317000 BTC/USDT candles in total from 2019-03-22T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 452 | "318000 BTC/USDT candles in total from 2019-03-21T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 453 | "319000 BTC/USDT candles in total from 2019-03-20T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 454 | "320000 BTC/USDT candles in total from 2019-03-20T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 455 | "321000 BTC/USDT candles in total from 2019-03-19T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 456 | "322000 BTC/USDT candles in total from 2019-03-18T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 457 | "323000 BTC/USDT candles in total from 2019-03-18T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 458 | "324000 BTC/USDT candles in total from 2019-03-17T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 459 | "325000 BTC/USDT candles in total from 2019-03-16T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 460 | "326000 BTC/USDT candles in total from 2019-03-16T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 461 | "327000 BTC/USDT candles in total from 2019-03-15T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 462 | "328000 BTC/USDT candles in total from 2019-03-14T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 463 | "329000 BTC/USDT candles in total from 2019-03-14T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 464 | "330000 BTC/USDT candles in total from 2019-03-13T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 465 | "331000 BTC/USDT candles in total from 2019-03-12T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 466 | "332000 BTC/USDT candles in total from 2019-03-11T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 467 | "333000 BTC/USDT candles in total from 2019-03-11T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 468 | "334000 BTC/USDT candles in total from 2019-03-10T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 469 | "335000 BTC/USDT candles in total from 2019-03-09T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 470 | "336000 BTC/USDT candles in total from 2019-03-09T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 471 | "337000 BTC/USDT candles in total from 2019-03-08T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 472 | "338000 BTC/USDT candles in total from 2019-03-07T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 473 | "339000 BTC/USDT candles in total from 2019-03-07T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 474 | "340000 BTC/USDT candles in total from 2019-03-06T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 475 | "341000 BTC/USDT candles in total from 2019-03-05T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 476 | "342000 BTC/USDT candles in total from 2019-03-05T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 477 | "343000 BTC/USDT candles in total from 2019-03-04T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 478 | "344000 BTC/USDT candles in total from 2019-03-03T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 479 | "345000 BTC/USDT candles in total from 2019-03-02T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 480 | "346000 BTC/USDT candles in total from 2019-03-02T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 481 | "347000 BTC/USDT candles in total from 2019-03-01T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 482 | "348000 BTC/USDT candles in total from 2019-02-28T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 483 | "349000 BTC/USDT candles in total from 2019-02-28T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 484 | "350000 BTC/USDT candles in total from 2019-02-27T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 485 | "351000 BTC/USDT candles in total from 2019-02-26T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 486 | "352000 BTC/USDT candles in total from 2019-02-26T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 487 | "353000 BTC/USDT candles in total from 2019-02-25T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 488 | "354000 BTC/USDT candles in total from 2019-02-24T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 489 | "355000 BTC/USDT candles in total from 2019-02-23T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 490 | "356000 BTC/USDT candles in total from 2019-02-23T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 491 | "357000 BTC/USDT candles in total from 2019-02-22T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 492 | "358000 BTC/USDT candles in total from 2019-02-21T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 493 | "359000 BTC/USDT candles in total from 2019-02-21T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 494 | "360000 BTC/USDT candles in total from 2019-02-20T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 495 | "361000 BTC/USDT candles in total from 2019-02-19T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 496 | "362000 BTC/USDT candles in total from 2019-02-19T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 497 | "363000 BTC/USDT candles in total from 2019-02-18T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 498 | "364000 BTC/USDT candles in total from 2019-02-17T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 499 | "365000 BTC/USDT candles in total from 2019-02-17T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n" 500 | ] 501 | }, 502 | { 503 | "name": "stdout", 504 | "output_type": "stream", 505 | "text": [ 506 | "366000 BTC/USDT candles in total from 2019-02-16T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 507 | "367000 BTC/USDT candles in total from 2019-02-15T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 508 | "368000 BTC/USDT candles in total from 2019-02-14T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 509 | "369000 BTC/USDT candles in total from 2019-02-14T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 510 | "370000 BTC/USDT candles in total from 2019-02-13T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 511 | "371000 BTC/USDT candles in total from 2019-02-12T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 512 | "372000 BTC/USDT candles in total from 2019-02-12T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 513 | "373000 BTC/USDT candles in total from 2019-02-11T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 514 | "374000 BTC/USDT candles in total from 2019-02-10T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 515 | "375000 BTC/USDT candles in total from 2019-02-10T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 516 | "376000 BTC/USDT candles in total from 2019-02-09T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 517 | "377000 BTC/USDT candles in total from 2019-02-08T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 518 | "378000 BTC/USDT candles in total from 2019-02-08T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 519 | "379000 BTC/USDT candles in total from 2019-02-07T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 520 | "380000 BTC/USDT candles in total from 2019-02-06T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 521 | "381000 BTC/USDT candles in total from 2019-02-05T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 522 | "382000 BTC/USDT candles in total from 2019-02-05T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 523 | "383000 BTC/USDT candles in total from 2019-02-04T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 524 | "384000 BTC/USDT candles in total from 2019-02-03T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 525 | "385000 BTC/USDT candles in total from 2019-02-03T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 526 | "386000 BTC/USDT candles in total from 2019-02-02T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 527 | "387000 BTC/USDT candles in total from 2019-02-01T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 528 | "388000 BTC/USDT candles in total from 2019-02-01T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 529 | "389000 BTC/USDT candles in total from 2019-01-31T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 530 | "390000 BTC/USDT candles in total from 2019-01-30T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 531 | "391000 BTC/USDT candles in total from 2019-01-29T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 532 | "392000 BTC/USDT candles in total from 2019-01-29T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 533 | "393000 BTC/USDT candles in total from 2019-01-28T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 534 | "394000 BTC/USDT candles in total from 2019-01-27T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 535 | "395000 BTC/USDT candles in total from 2019-01-27T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 536 | "396000 BTC/USDT candles in total from 2019-01-26T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 537 | "397000 BTC/USDT candles in total from 2019-01-25T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 538 | "398000 BTC/USDT candles in total from 2019-01-25T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 539 | "399000 BTC/USDT candles in total from 2019-01-24T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 540 | "400000 BTC/USDT candles in total from 2019-01-23T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 541 | "401000 BTC/USDT candles in total from 2019-01-23T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 542 | "402000 BTC/USDT candles in total from 2019-01-22T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 543 | "403000 BTC/USDT candles in total from 2019-01-21T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 544 | "404000 BTC/USDT candles in total from 2019-01-20T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 545 | "405000 BTC/USDT candles in total from 2019-01-20T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 546 | "406000 BTC/USDT candles in total from 2019-01-19T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 547 | "407000 BTC/USDT candles in total from 2019-01-18T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 548 | "408000 BTC/USDT candles in total from 2019-01-18T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 549 | "409000 BTC/USDT candles in total from 2019-01-17T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 550 | "410000 BTC/USDT candles in total from 2019-01-16T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 551 | "411000 BTC/USDT candles in total from 2019-01-16T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 552 | "412000 BTC/USDT candles in total from 2019-01-15T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 553 | "413000 BTC/USDT candles in total from 2019-01-14T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 554 | "414000 BTC/USDT candles in total from 2019-01-14T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 555 | "415000 BTC/USDT candles in total from 2019-01-13T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 556 | "416000 BTC/USDT candles in total from 2019-01-12T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 557 | "417000 BTC/USDT candles in total from 2019-01-11T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 558 | "418000 BTC/USDT candles in total from 2019-01-11T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 559 | "419000 BTC/USDT candles in total from 2019-01-10T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 560 | "420000 BTC/USDT candles in total from 2019-01-09T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 561 | "421000 BTC/USDT candles in total from 2019-01-09T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 562 | "422000 BTC/USDT candles in total from 2019-01-08T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 563 | "423000 BTC/USDT candles in total from 2019-01-07T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 564 | "424000 BTC/USDT candles in total from 2019-01-07T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 565 | "425000 BTC/USDT candles in total from 2019-01-06T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 566 | "426000 BTC/USDT candles in total from 2019-01-05T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 567 | "427000 BTC/USDT candles in total from 2019-01-04T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 568 | "428000 BTC/USDT candles in total from 2019-01-04T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 569 | "429000 BTC/USDT candles in total from 2019-01-03T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 570 | "430000 BTC/USDT candles in total from 2019-01-02T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 571 | "431000 BTC/USDT candles in total from 2019-01-02T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 572 | "432000 BTC/USDT candles in total from 2019-01-01T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 573 | "433000 BTC/USDT candles in total from 2018-12-31T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 574 | "434000 BTC/USDT candles in total from 2018-12-31T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 575 | "435000 BTC/USDT candles in total from 2018-12-30T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 576 | "436000 BTC/USDT candles in total from 2018-12-29T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 577 | "437000 BTC/USDT candles in total from 2018-12-29T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 578 | "438000 BTC/USDT candles in total from 2018-12-28T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 579 | "439000 BTC/USDT candles in total from 2018-12-27T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 580 | "440000 BTC/USDT candles in total from 2018-12-26T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 581 | "441000 BTC/USDT candles in total from 2018-12-26T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 582 | "442000 BTC/USDT candles in total from 2018-12-25T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 583 | "443000 BTC/USDT candles in total from 2018-12-24T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 584 | "444000 BTC/USDT candles in total from 2018-12-24T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 585 | "445000 BTC/USDT candles in total from 2018-12-23T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 586 | "446000 BTC/USDT candles in total from 2018-12-22T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 587 | "447000 BTC/USDT candles in total from 2018-12-22T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 588 | "448000 BTC/USDT candles in total from 2018-12-21T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 589 | "449000 BTC/USDT candles in total from 2018-12-20T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 590 | "450000 BTC/USDT candles in total from 2018-12-20T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 591 | "451000 BTC/USDT candles in total from 2018-12-19T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 592 | "452000 BTC/USDT candles in total from 2018-12-18T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 593 | "453000 BTC/USDT candles in total from 2018-12-17T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 594 | "454000 BTC/USDT candles in total from 2018-12-17T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 595 | "455000 BTC/USDT candles in total from 2018-12-16T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 596 | "456000 BTC/USDT candles in total from 2018-12-15T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n" 597 | ] 598 | }, 599 | { 600 | "name": "stdout", 601 | "output_type": "stream", 602 | "text": [ 603 | "457000 BTC/USDT candles in total from 2018-12-15T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 604 | "458000 BTC/USDT candles in total from 2018-12-14T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 605 | "459000 BTC/USDT candles in total from 2018-12-13T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 606 | "460000 BTC/USDT candles in total from 2018-12-13T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 607 | "461000 BTC/USDT candles in total from 2018-12-12T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 608 | "462000 BTC/USDT candles in total from 2018-12-11T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 609 | "463000 BTC/USDT candles in total from 2018-12-10T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 610 | "464000 BTC/USDT candles in total from 2018-12-10T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 611 | "465000 BTC/USDT candles in total from 2018-12-09T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 612 | "466000 BTC/USDT candles in total from 2018-12-08T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 613 | "467000 BTC/USDT candles in total from 2018-12-08T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 614 | "468000 BTC/USDT candles in total from 2018-12-07T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 615 | "469000 BTC/USDT candles in total from 2018-12-06T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 616 | "470000 BTC/USDT candles in total from 2018-12-06T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 617 | "471000 BTC/USDT candles in total from 2018-12-05T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 618 | "472000 BTC/USDT candles in total from 2018-12-04T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 619 | "473000 BTC/USDT candles in total from 2018-12-04T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 620 | "474000 BTC/USDT candles in total from 2018-12-03T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 621 | "475000 BTC/USDT candles in total from 2018-12-02T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 622 | "476000 BTC/USDT candles in total from 2018-12-01T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 623 | "477000 BTC/USDT candles in total from 2018-12-01T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 624 | "478000 BTC/USDT candles in total from 2018-11-30T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 625 | "479000 BTC/USDT candles in total from 2018-11-29T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 626 | "480000 BTC/USDT candles in total from 2018-11-29T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 627 | "481000 BTC/USDT candles in total from 2018-11-28T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 628 | "482000 BTC/USDT candles in total from 2018-11-27T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 629 | "483000 BTC/USDT candles in total from 2018-11-27T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 630 | "484000 BTC/USDT candles in total from 2018-11-26T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 631 | "485000 BTC/USDT candles in total from 2018-11-25T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 632 | "486000 BTC/USDT candles in total from 2018-11-25T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 633 | "487000 BTC/USDT candles in total from 2018-11-24T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 634 | "488000 BTC/USDT candles in total from 2018-11-23T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 635 | "489000 BTC/USDT candles in total from 2018-11-22T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 636 | "490000 BTC/USDT candles in total from 2018-11-22T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 637 | "491000 BTC/USDT candles in total from 2018-11-21T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 638 | "492000 BTC/USDT candles in total from 2018-11-20T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 639 | "493000 BTC/USDT candles in total from 2018-11-20T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 640 | "494000 BTC/USDT candles in total from 2018-11-19T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 641 | "495000 BTC/USDT candles in total from 2018-11-18T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 642 | "496000 BTC/USDT candles in total from 2018-11-18T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 643 | "497000 BTC/USDT candles in total from 2018-11-17T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 644 | "498000 BTC/USDT candles in total from 2018-11-16T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 645 | "499000 BTC/USDT candles in total from 2018-11-15T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 646 | "500000 BTC/USDT candles in total from 2018-11-15T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 647 | "501000 BTC/USDT candles in total from 2018-11-14T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 648 | "502000 BTC/USDT candles in total from 2018-11-13T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 649 | "503000 BTC/USDT candles in total from 2018-11-13T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 650 | "504000 BTC/USDT candles in total from 2018-11-12T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 651 | "505000 BTC/USDT candles in total from 2018-11-11T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 652 | "506000 BTC/USDT candles in total from 2018-11-11T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 653 | "507000 BTC/USDT candles in total from 2018-11-10T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 654 | "508000 BTC/USDT candles in total from 2018-11-09T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 655 | "509000 BTC/USDT candles in total from 2018-11-09T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 656 | "510000 BTC/USDT candles in total from 2018-11-08T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 657 | "511000 BTC/USDT candles in total from 2018-11-07T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 658 | "512000 BTC/USDT candles in total from 2018-11-06T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 659 | "513000 BTC/USDT candles in total from 2018-11-06T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 660 | "514000 BTC/USDT candles in total from 2018-11-05T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 661 | "515000 BTC/USDT candles in total from 2018-11-04T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 662 | "516000 BTC/USDT candles in total from 2018-11-04T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 663 | "517000 BTC/USDT candles in total from 2018-11-03T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 664 | "518000 BTC/USDT candles in total from 2018-11-02T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 665 | "519000 BTC/USDT candles in total from 2018-11-02T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 666 | "520000 BTC/USDT candles in total from 2018-11-01T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 667 | "521000 BTC/USDT candles in total from 2018-10-31T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 668 | "522000 BTC/USDT candles in total from 2018-10-31T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 669 | "523000 BTC/USDT candles in total from 2018-10-30T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 670 | "524000 BTC/USDT candles in total from 2018-10-29T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 671 | "525000 BTC/USDT candles in total from 2018-10-28T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 672 | "526000 BTC/USDT candles in total from 2018-10-28T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 673 | "527000 BTC/USDT candles in total from 2018-10-27T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 674 | "528000 BTC/USDT candles in total from 2018-10-26T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 675 | "529000 BTC/USDT candles in total from 2018-10-26T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 676 | "530000 BTC/USDT candles in total from 2018-10-25T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 677 | "531000 BTC/USDT candles in total from 2018-10-24T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 678 | "532000 BTC/USDT candles in total from 2018-10-24T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 679 | "533000 BTC/USDT candles in total from 2018-10-23T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 680 | "534000 BTC/USDT candles in total from 2018-10-22T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 681 | "535000 BTC/USDT candles in total from 2018-10-21T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 682 | "536000 BTC/USDT candles in total from 2018-10-21T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 683 | "537000 BTC/USDT candles in total from 2018-10-20T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 684 | "538000 BTC/USDT candles in total from 2018-10-19T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 685 | "539000 BTC/USDT candles in total from 2018-10-19T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 686 | "540000 BTC/USDT candles in total from 2018-10-18T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 687 | "541000 BTC/USDT candles in total from 2018-10-17T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 688 | "542000 BTC/USDT candles in total from 2018-10-17T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 689 | "543000 BTC/USDT candles in total from 2018-10-16T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 690 | "544000 BTC/USDT candles in total from 2018-10-15T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 691 | "545000 BTC/USDT candles in total from 2018-10-15T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 692 | "546000 BTC/USDT candles in total from 2018-10-14T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 693 | "547000 BTC/USDT candles in total from 2018-10-13T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n" 694 | ] 695 | }, 696 | { 697 | "name": "stdout", 698 | "output_type": "stream", 699 | "text": [ 700 | "548000 BTC/USDT candles in total from 2018-10-12T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 701 | "549000 BTC/USDT candles in total from 2018-10-12T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 702 | "550000 BTC/USDT candles in total from 2018-10-11T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 703 | "551000 BTC/USDT candles in total from 2018-10-10T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 704 | "552000 BTC/USDT candles in total from 2018-10-10T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 705 | "553000 BTC/USDT candles in total from 2018-10-09T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 706 | "554000 BTC/USDT candles in total from 2018-10-08T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 707 | "555000 BTC/USDT candles in total from 2018-10-08T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 708 | "556000 BTC/USDT candles in total from 2018-10-07T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 709 | "557000 BTC/USDT candles in total from 2018-10-06T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 710 | "558000 BTC/USDT candles in total from 2018-10-06T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 711 | "559000 BTC/USDT candles in total from 2018-10-05T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 712 | "560000 BTC/USDT candles in total from 2018-10-04T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 713 | "561000 BTC/USDT candles in total from 2018-10-03T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 714 | "562000 BTC/USDT candles in total from 2018-10-03T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 715 | "563000 BTC/USDT candles in total from 2018-10-02T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 716 | "564000 BTC/USDT candles in total from 2018-10-01T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 717 | "565000 BTC/USDT candles in total from 2018-10-01T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 718 | "566000 BTC/USDT candles in total from 2018-09-30T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 719 | "567000 BTC/USDT candles in total from 2018-09-29T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 720 | "568000 BTC/USDT candles in total from 2018-09-29T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 721 | "569000 BTC/USDT candles in total from 2018-09-28T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 722 | "570000 BTC/USDT candles in total from 2018-09-27T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 723 | "571000 BTC/USDT candles in total from 2018-09-26T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 724 | "572000 BTC/USDT candles in total from 2018-09-26T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 725 | "573000 BTC/USDT candles in total from 2018-09-25T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 726 | "574000 BTC/USDT candles in total from 2018-09-24T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 727 | "575000 BTC/USDT candles in total from 2018-09-24T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 728 | "576000 BTC/USDT candles in total from 2018-09-23T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 729 | "577000 BTC/USDT candles in total from 2018-09-22T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 730 | "578000 BTC/USDT candles in total from 2018-09-22T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 731 | "579000 BTC/USDT candles in total from 2018-09-21T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 732 | "580000 BTC/USDT candles in total from 2018-09-20T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 733 | "581000 BTC/USDT candles in total from 2018-09-20T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 734 | "582000 BTC/USDT candles in total from 2018-09-19T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 735 | "583000 BTC/USDT candles in total from 2018-09-18T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 736 | "584000 BTC/USDT candles in total from 2018-09-17T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 737 | "585000 BTC/USDT candles in total from 2018-09-17T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 738 | "586000 BTC/USDT candles in total from 2018-09-16T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 739 | "587000 BTC/USDT candles in total from 2018-09-15T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 740 | "588000 BTC/USDT candles in total from 2018-09-15T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 741 | "589000 BTC/USDT candles in total from 2018-09-14T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 742 | "590000 BTC/USDT candles in total from 2018-09-13T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 743 | "591000 BTC/USDT candles in total from 2018-09-13T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 744 | "592000 BTC/USDT candles in total from 2018-09-12T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 745 | "593000 BTC/USDT candles in total from 2018-09-11T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 746 | "594000 BTC/USDT candles in total from 2018-09-11T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 747 | "595000 BTC/USDT candles in total from 2018-09-10T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 748 | "596000 BTC/USDT candles in total from 2018-09-09T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 749 | "597000 BTC/USDT candles in total from 2018-09-08T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 750 | "598000 BTC/USDT candles in total from 2018-09-08T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 751 | "599000 BTC/USDT candles in total from 2018-09-07T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 752 | "600000 BTC/USDT candles in total from 2018-09-06T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 753 | "601000 BTC/USDT candles in total from 2018-09-06T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 754 | "602000 BTC/USDT candles in total from 2018-09-05T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 755 | "603000 BTC/USDT candles in total from 2018-09-04T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 756 | "604000 BTC/USDT candles in total from 2018-09-04T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 757 | "605000 BTC/USDT candles in total from 2018-09-03T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 758 | "606000 BTC/USDT candles in total from 2018-09-02T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 759 | "607000 BTC/USDT candles in total from 2018-09-01T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 760 | "608000 BTC/USDT candles in total from 2018-09-01T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 761 | "609000 BTC/USDT candles in total from 2018-08-31T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 762 | "610000 BTC/USDT candles in total from 2018-08-30T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 763 | "611000 BTC/USDT candles in total from 2018-08-30T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 764 | "612000 BTC/USDT candles in total from 2018-08-29T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 765 | "613000 BTC/USDT candles in total from 2018-08-28T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 766 | "614000 BTC/USDT candles in total from 2018-08-28T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 767 | "615000 BTC/USDT candles in total from 2018-08-27T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 768 | "616000 BTC/USDT candles in total from 2018-08-26T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 769 | "617000 BTC/USDT candles in total from 2018-08-26T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 770 | "618000 BTC/USDT candles in total from 2018-08-25T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 771 | "619000 BTC/USDT candles in total from 2018-08-24T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 772 | "620000 BTC/USDT candles in total from 2018-08-23T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 773 | "621000 BTC/USDT candles in total from 2018-08-23T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 774 | "622000 BTC/USDT candles in total from 2018-08-22T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 775 | "623000 BTC/USDT candles in total from 2018-08-21T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 776 | "624000 BTC/USDT candles in total from 2018-08-21T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 777 | "625000 BTC/USDT candles in total from 2018-08-20T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 778 | "626000 BTC/USDT candles in total from 2018-08-19T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 779 | "627000 BTC/USDT candles in total from 2018-08-19T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 780 | "628000 BTC/USDT candles in total from 2018-08-18T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 781 | "629000 BTC/USDT candles in total from 2018-08-17T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 782 | "630000 BTC/USDT candles in total from 2018-08-17T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 783 | "631000 BTC/USDT candles in total from 2018-08-16T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 784 | "632000 BTC/USDT candles in total from 2018-08-15T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 785 | "633000 BTC/USDT candles in total from 2018-08-14T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 786 | "634000 BTC/USDT candles in total from 2018-08-14T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 787 | "635000 BTC/USDT candles in total from 2018-08-13T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 788 | "636000 BTC/USDT candles in total from 2018-08-12T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 789 | "637000 BTC/USDT candles in total from 2018-08-12T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 790 | "638000 BTC/USDT candles in total from 2018-08-11T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n" 791 | ] 792 | }, 793 | { 794 | "name": "stdout", 795 | "output_type": "stream", 796 | "text": [ 797 | "639000 BTC/USDT candles in total from 2018-08-10T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 798 | "640000 BTC/USDT candles in total from 2018-08-10T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 799 | "641000 BTC/USDT candles in total from 2018-08-09T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 800 | "642000 BTC/USDT candles in total from 2018-08-08T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 801 | "643000 BTC/USDT candles in total from 2018-08-07T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 802 | "644000 BTC/USDT candles in total from 2018-08-07T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 803 | "645000 BTC/USDT candles in total from 2018-08-06T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 804 | "646000 BTC/USDT candles in total from 2018-08-05T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 805 | "647000 BTC/USDT candles in total from 2018-08-05T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 806 | "648000 BTC/USDT candles in total from 2018-08-04T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 807 | "649000 BTC/USDT candles in total from 2018-08-03T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 808 | "650000 BTC/USDT candles in total from 2018-08-03T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 809 | "651000 BTC/USDT candles in total from 2018-08-02T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 810 | "652000 BTC/USDT candles in total from 2018-08-01T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 811 | "653000 BTC/USDT candles in total from 2018-08-01T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 812 | "654000 BTC/USDT candles in total from 2018-07-31T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 813 | "655000 BTC/USDT candles in total from 2018-07-30T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 814 | "656000 BTC/USDT candles in total from 2018-07-29T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 815 | "657000 BTC/USDT candles in total from 2018-07-29T06:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 816 | "658000 BTC/USDT candles in total from 2018-07-28T13:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 817 | "659000 BTC/USDT candles in total from 2018-07-27T21:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 818 | "660000 BTC/USDT candles in total from 2018-07-27T04:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 819 | "661000 BTC/USDT candles in total from 2018-07-26T11:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 820 | "662000 BTC/USDT candles in total from 2018-07-25T19:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 821 | "663000 BTC/USDT candles in total from 2018-07-25T02:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 822 | "664000 BTC/USDT candles in total from 2018-07-24T09:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 823 | "665000 BTC/USDT candles in total from 2018-07-23T17:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 824 | "666000 BTC/USDT candles in total from 2018-07-23T00:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 825 | "667000 BTC/USDT candles in total from 2018-07-22T07:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 826 | "668000 BTC/USDT candles in total from 2018-07-21T15:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 827 | "669000 BTC/USDT candles in total from 2018-07-20T22:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 828 | "670000 BTC/USDT candles in total from 2018-07-20T05:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 829 | "671000 BTC/USDT candles in total from 2018-07-19T13:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 830 | "672000 BTC/USDT candles in total from 2018-07-18T20:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 831 | "673000 BTC/USDT candles in total from 2018-07-18T03:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 832 | "674000 BTC/USDT candles in total from 2018-07-17T11:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 833 | "675000 BTC/USDT candles in total from 2018-07-16T18:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 834 | "676000 BTC/USDT candles in total from 2018-07-16T01:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 835 | "677000 BTC/USDT candles in total from 2018-07-15T09:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 836 | "678000 BTC/USDT candles in total from 2018-07-14T16:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 837 | "679000 BTC/USDT candles in total from 2018-07-13T23:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 838 | "680000 BTC/USDT candles in total from 2018-07-13T07:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 839 | "681000 BTC/USDT candles in total from 2018-07-12T14:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 840 | "682000 BTC/USDT candles in total from 2018-07-11T21:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 841 | "683000 BTC/USDT candles in total from 2018-07-11T05:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 842 | "684000 BTC/USDT candles in total from 2018-07-10T12:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 843 | "685000 BTC/USDT candles in total from 2018-07-09T19:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 844 | "686000 BTC/USDT candles in total from 2018-07-09T03:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 845 | "687000 BTC/USDT candles in total from 2018-07-08T10:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 846 | "688000 BTC/USDT candles in total from 2018-07-07T17:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 847 | "689000 BTC/USDT candles in total from 2018-07-07T01:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 848 | "690000 BTC/USDT candles in total from 2018-07-06T08:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 849 | "691000 BTC/USDT candles in total from 2018-07-05T15:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 850 | "692000 BTC/USDT candles in total from 2018-07-04T23:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 851 | "693000 BTC/USDT candles in total from 2018-07-04T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 852 | "694000 BTC/USDT candles in total from 2018-07-03T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 853 | "695000 BTC/USDT candles in total from 2018-07-02T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 854 | "696000 BTC/USDT candles in total from 2018-07-02T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 855 | "697000 BTC/USDT candles in total from 2018-07-01T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 856 | "698000 BTC/USDT candles in total from 2018-06-30T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 857 | "699000 BTC/USDT candles in total from 2018-06-30T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 858 | "700000 BTC/USDT candles in total from 2018-06-29T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 859 | "701000 BTC/USDT candles in total from 2018-06-28T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 860 | "702000 BTC/USDT candles in total from 2018-06-28T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 861 | "703000 BTC/USDT candles in total from 2018-06-27T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 862 | "704000 BTC/USDT candles in total from 2018-06-26T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 863 | "705000 BTC/USDT candles in total from 2018-06-26T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 864 | "706000 BTC/USDT candles in total from 2018-06-25T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 865 | "707000 BTC/USDT candles in total from 2018-06-24T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 866 | "708000 BTC/USDT candles in total from 2018-06-23T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 867 | "709000 BTC/USDT candles in total from 2018-06-23T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 868 | "710000 BTC/USDT candles in total from 2018-06-22T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 869 | "711000 BTC/USDT candles in total from 2018-06-21T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 870 | "712000 BTC/USDT candles in total from 2018-06-21T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 871 | "713000 BTC/USDT candles in total from 2018-06-20T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 872 | "714000 BTC/USDT candles in total from 2018-06-19T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 873 | "715000 BTC/USDT candles in total from 2018-06-19T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 874 | "716000 BTC/USDT candles in total from 2018-06-18T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 875 | "717000 BTC/USDT candles in total from 2018-06-17T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 876 | "718000 BTC/USDT candles in total from 2018-06-16T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 877 | "719000 BTC/USDT candles in total from 2018-06-16T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 878 | "720000 BTC/USDT candles in total from 2018-06-15T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 879 | "721000 BTC/USDT candles in total from 2018-06-14T21:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 880 | "722000 BTC/USDT candles in total from 2018-06-14T04:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 881 | "723000 BTC/USDT candles in total from 2018-06-13T12:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 882 | "724000 BTC/USDT candles in total from 2018-06-12T19:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 883 | "725000 BTC/USDT candles in total from 2018-06-12T02:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 884 | "726000 BTC/USDT candles in total from 2018-06-11T10:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 885 | "727000 BTC/USDT candles in total from 2018-06-10T17:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 886 | "728000 BTC/USDT candles in total from 2018-06-10T00:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 887 | "729000 BTC/USDT candles in total from 2018-06-09T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n" 888 | ] 889 | }, 890 | { 891 | "name": "stdout", 892 | "output_type": "stream", 893 | "text": [ 894 | "730000 BTC/USDT candles in total from 2018-06-08T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 895 | "731000 BTC/USDT candles in total from 2018-06-07T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 896 | "732000 BTC/USDT candles in total from 2018-06-07T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 897 | "733000 BTC/USDT candles in total from 2018-06-06T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 898 | "734000 BTC/USDT candles in total from 2018-06-05T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 899 | "735000 BTC/USDT candles in total from 2018-06-05T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 900 | "736000 BTC/USDT candles in total from 2018-06-04T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 901 | "737000 BTC/USDT candles in total from 2018-06-03T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 902 | "738000 BTC/USDT candles in total from 2018-06-03T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 903 | "739000 BTC/USDT candles in total from 2018-06-02T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 904 | "740000 BTC/USDT candles in total from 2018-06-01T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 905 | "741000 BTC/USDT candles in total from 2018-06-01T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 906 | "742000 BTC/USDT candles in total from 2018-05-31T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 907 | "743000 BTC/USDT candles in total from 2018-05-30T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 908 | "744000 BTC/USDT candles in total from 2018-05-29T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 909 | "745000 BTC/USDT candles in total from 2018-05-29T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 910 | "746000 BTC/USDT candles in total from 2018-05-28T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 911 | "747000 BTC/USDT candles in total from 2018-05-27T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 912 | "748000 BTC/USDT candles in total from 2018-05-27T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 913 | "749000 BTC/USDT candles in total from 2018-05-26T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 914 | "750000 BTC/USDT candles in total from 2018-05-25T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 915 | "751000 BTC/USDT candles in total from 2018-05-25T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 916 | "752000 BTC/USDT candles in total from 2018-05-24T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 917 | "753000 BTC/USDT candles in total from 2018-05-23T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 918 | "754000 BTC/USDT candles in total from 2018-05-22T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 919 | "755000 BTC/USDT candles in total from 2018-05-22T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 920 | "756000 BTC/USDT candles in total from 2018-05-21T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 921 | "757000 BTC/USDT candles in total from 2018-05-20T21:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 922 | "758000 BTC/USDT candles in total from 2018-05-20T04:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 923 | "759000 BTC/USDT candles in total from 2018-05-19T12:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 924 | "760000 BTC/USDT candles in total from 2018-05-18T19:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 925 | "761000 BTC/USDT candles in total from 2018-05-18T02:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 926 | "762000 BTC/USDT candles in total from 2018-05-17T10:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 927 | "763000 BTC/USDT candles in total from 2018-05-16T17:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 928 | "764000 BTC/USDT candles in total from 2018-05-16T00:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 929 | "765000 BTC/USDT candles in total from 2018-05-15T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 930 | "766000 BTC/USDT candles in total from 2018-05-14T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 931 | "767000 BTC/USDT candles in total from 2018-05-13T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 932 | "768000 BTC/USDT candles in total from 2018-05-13T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 933 | "769000 BTC/USDT candles in total from 2018-05-12T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 934 | "770000 BTC/USDT candles in total from 2018-05-11T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 935 | "771000 BTC/USDT candles in total from 2018-05-11T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 936 | "772000 BTC/USDT candles in total from 2018-05-10T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 937 | "773000 BTC/USDT candles in total from 2018-05-09T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 938 | "774000 BTC/USDT candles in total from 2018-05-09T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 939 | "775000 BTC/USDT candles in total from 2018-05-08T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 940 | "776000 BTC/USDT candles in total from 2018-05-07T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 941 | "777000 BTC/USDT candles in total from 2018-05-07T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 942 | "778000 BTC/USDT candles in total from 2018-05-06T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 943 | "779000 BTC/USDT candles in total from 2018-05-05T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 944 | "780000 BTC/USDT candles in total from 2018-05-04T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 945 | "781000 BTC/USDT candles in total from 2018-05-04T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 946 | "782000 BTC/USDT candles in total from 2018-05-03T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 947 | "783000 BTC/USDT candles in total from 2018-05-02T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 948 | "784000 BTC/USDT candles in total from 2018-05-02T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 949 | "785000 BTC/USDT candles in total from 2018-05-01T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 950 | "786000 BTC/USDT candles in total from 2018-04-30T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 951 | "787000 BTC/USDT candles in total from 2018-04-30T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 952 | "788000 BTC/USDT candles in total from 2018-04-29T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 953 | "789000 BTC/USDT candles in total from 2018-04-28T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 954 | "790000 BTC/USDT candles in total from 2018-04-27T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 955 | "791000 BTC/USDT candles in total from 2018-04-27T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 956 | "792000 BTC/USDT candles in total from 2018-04-26T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 957 | "793000 BTC/USDT candles in total from 2018-04-25T21:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 958 | "794000 BTC/USDT candles in total from 2018-04-25T04:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 959 | "795000 BTC/USDT candles in total from 2018-04-24T12:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 960 | "796000 BTC/USDT candles in total from 2018-04-23T19:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 961 | "797000 BTC/USDT candles in total from 2018-04-23T02:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 962 | "798000 BTC/USDT candles in total from 2018-04-22T10:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 963 | "799000 BTC/USDT candles in total from 2018-04-21T17:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 964 | "800000 BTC/USDT candles in total from 2018-04-21T00:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 965 | "801000 BTC/USDT candles in total from 2018-04-20T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 966 | "802000 BTC/USDT candles in total from 2018-04-19T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 967 | "803000 BTC/USDT candles in total from 2018-04-18T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 968 | "804000 BTC/USDT candles in total from 2018-04-18T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 969 | "805000 BTC/USDT candles in total from 2018-04-17T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 970 | "806000 BTC/USDT candles in total from 2018-04-16T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 971 | "807000 BTC/USDT candles in total from 2018-04-16T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 972 | "808000 BTC/USDT candles in total from 2018-04-15T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 973 | "809000 BTC/USDT candles in total from 2018-04-14T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 974 | "810000 BTC/USDT candles in total from 2018-04-14T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 975 | "811000 BTC/USDT candles in total from 2018-04-13T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 976 | "812000 BTC/USDT candles in total from 2018-04-12T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 977 | "813000 BTC/USDT candles in total from 2018-04-12T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 978 | "814000 BTC/USDT candles in total from 2018-04-11T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 979 | "815000 BTC/USDT candles in total from 2018-04-10T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 980 | "816000 BTC/USDT candles in total from 2018-04-09T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 981 | "817000 BTC/USDT candles in total from 2018-04-09T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 982 | "818000 BTC/USDT candles in total from 2018-04-08T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 983 | "819000 BTC/USDT candles in total from 2018-04-07T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 984 | "820000 BTC/USDT candles in total from 2018-04-07T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n" 985 | ] 986 | }, 987 | { 988 | "name": "stdout", 989 | "output_type": "stream", 990 | "text": [ 991 | "821000 BTC/USDT candles in total from 2018-04-06T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 992 | "822000 BTC/USDT candles in total from 2018-04-05T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 993 | "823000 BTC/USDT candles in total from 2018-04-05T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 994 | "824000 BTC/USDT candles in total from 2018-04-04T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 995 | "825000 BTC/USDT candles in total from 2018-04-03T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 996 | "826000 BTC/USDT candles in total from 2018-04-02T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 997 | "827000 BTC/USDT candles in total from 2018-04-02T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 998 | "828000 BTC/USDT candles in total from 2018-04-01T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 999 | "829000 BTC/USDT candles in total from 2018-03-31T21:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1000 | "830000 BTC/USDT candles in total from 2018-03-31T04:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1001 | "831000 BTC/USDT candles in total from 2018-03-30T12:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1002 | "832000 BTC/USDT candles in total from 2018-03-29T19:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1003 | "833000 BTC/USDT candles in total from 2018-03-29T02:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1004 | "834000 BTC/USDT candles in total from 2018-03-28T10:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1005 | "835000 BTC/USDT candles in total from 2018-03-27T17:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1006 | "836000 BTC/USDT candles in total from 2018-03-27T00:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1007 | "837000 BTC/USDT candles in total from 2018-03-26T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1008 | "838000 BTC/USDT candles in total from 2018-03-25T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1009 | "839000 BTC/USDT candles in total from 2018-03-24T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1010 | "840000 BTC/USDT candles in total from 2018-03-24T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1011 | "841000 BTC/USDT candles in total from 2018-03-23T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1012 | "842000 BTC/USDT candles in total from 2018-03-22T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1013 | "843000 BTC/USDT candles in total from 2018-03-22T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1014 | "844000 BTC/USDT candles in total from 2018-03-21T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1015 | "845000 BTC/USDT candles in total from 2018-03-20T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1016 | "846000 BTC/USDT candles in total from 2018-03-20T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1017 | "847000 BTC/USDT candles in total from 2018-03-19T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1018 | "848000 BTC/USDT candles in total from 2018-03-18T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1019 | "849000 BTC/USDT candles in total from 2018-03-18T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1020 | "850000 BTC/USDT candles in total from 2018-03-17T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1021 | "851000 BTC/USDT candles in total from 2018-03-16T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1022 | "852000 BTC/USDT candles in total from 2018-03-15T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1023 | "853000 BTC/USDT candles in total from 2018-03-15T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1024 | "854000 BTC/USDT candles in total from 2018-03-14T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1025 | "855000 BTC/USDT candles in total from 2018-03-13T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1026 | "856000 BTC/USDT candles in total from 2018-03-13T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1027 | "857000 BTC/USDT candles in total from 2018-03-12T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1028 | "858000 BTC/USDT candles in total from 2018-03-11T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1029 | "859000 BTC/USDT candles in total from 2018-03-11T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1030 | "860000 BTC/USDT candles in total from 2018-03-10T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1031 | "861000 BTC/USDT candles in total from 2018-03-09T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1032 | "862000 BTC/USDT candles in total from 2018-03-08T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1033 | "863000 BTC/USDT candles in total from 2018-03-08T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1034 | "864000 BTC/USDT candles in total from 2018-03-07T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1035 | "865000 BTC/USDT candles in total from 2018-03-06T21:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1036 | "866000 BTC/USDT candles in total from 2018-03-06T04:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1037 | "867000 BTC/USDT candles in total from 2018-03-05T12:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1038 | "868000 BTC/USDT candles in total from 2018-03-04T19:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1039 | "869000 BTC/USDT candles in total from 2018-03-04T02:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1040 | "870000 BTC/USDT candles in total from 2018-03-03T10:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1041 | "871000 BTC/USDT candles in total from 2018-03-02T17:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1042 | "872000 BTC/USDT candles in total from 2018-03-02T00:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1043 | "873000 BTC/USDT candles in total from 2018-03-01T08:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1044 | "874000 BTC/USDT candles in total from 2018-02-28T15:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1045 | "875000 BTC/USDT candles in total from 2018-02-27T22:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1046 | "876000 BTC/USDT candles in total from 2018-02-27T06:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1047 | "877000 BTC/USDT candles in total from 2018-02-26T13:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1048 | "878000 BTC/USDT candles in total from 2018-02-25T20:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1049 | "879000 BTC/USDT candles in total from 2018-02-25T04:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1050 | "880000 BTC/USDT candles in total from 2018-02-24T11:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1051 | "881000 BTC/USDT candles in total from 2018-02-23T18:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1052 | "882000 BTC/USDT candles in total from 2018-02-23T02:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1053 | "883000 BTC/USDT candles in total from 2018-02-22T09:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1054 | "884000 BTC/USDT candles in total from 2018-02-21T16:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1055 | "885000 BTC/USDT candles in total from 2018-02-21T00:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1056 | "886000 BTC/USDT candles in total from 2018-02-20T07:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1057 | "887000 BTC/USDT candles in total from 2018-02-19T14:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1058 | "888000 BTC/USDT candles in total from 2018-02-18T22:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1059 | "889000 BTC/USDT candles in total from 2018-02-18T05:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1060 | "890000 BTC/USDT candles in total from 2018-02-17T12:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1061 | "891000 BTC/USDT candles in total from 2018-02-16T20:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1062 | "892000 BTC/USDT candles in total from 2018-02-16T03:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1063 | "893000 BTC/USDT candles in total from 2018-02-15T10:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1064 | "894000 BTC/USDT candles in total from 2018-02-14T18:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1065 | "895000 BTC/USDT candles in total from 2018-02-14T01:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1066 | "896000 BTC/USDT candles in total from 2018-02-13T08:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1067 | "897000 BTC/USDT candles in total from 2018-02-12T16:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1068 | "898000 BTC/USDT candles in total from 2018-02-11T23:20:00.000Z to 2019-10-28T04:30:00.000Z\n", 1069 | "899000 BTC/USDT candles in total from 2018-02-11T06:40:00.000Z to 2019-10-28T04:30:00.000Z\n", 1070 | "900000 BTC/USDT candles in total from 2018-02-10T14:00:00.000Z to 2019-10-28T04:30:00.000Z\n", 1071 | "901000 BTC/USDT candles in total from 2018-02-09T21:20:14.789Z to 2019-10-28T04:30:00.000Z\n", 1072 | "902000 BTC/USDT candles in total from 2018-02-09T09:59:14.789Z to 2019-10-28T04:30:00.000Z\n", 1073 | "Saved 902000 candles from 2018-02-09T09:59:14.789Z to 2019-10-28T04:30:00.000Z to btc_usdt_1m.csv\n" 1074 | ] 1075 | } 1076 | ], 1077 | "source": [ 1078 | "scrape_candles_to_csv('btc_usdt_1m.csv', 'binance', 3, 'BTC/USDT', '1m', '2017-01-0100:00:00Z', 1000)\n", 1079 | "# scrape_candles_to_csv('./data/raw/binance/eth_btc_1m.csv', 'binance', 3, 'ETH/BTC', '1m', '2018-01-01T00:00:00Z', 1000)\n", 1080 | "# scrape_candles_to_csv('./data/raw/binance/ltc_btc_1m.csv', 'binance', 3, 'LTC/BTC', '1m', '2018-01-01T00:00:00Z', 1000)\n", 1081 | "# scrape_candles_to_csv('./data/raw/binance/xlm_btc_1m.csv', 'binance', 3, 'XLM/BTC', '1m', '2018-01-01T00:00:00Z', 1000)" 1082 | ] 1083 | }, 1084 | { 1085 | "cell_type": "code", 1086 | "execution_count": null, 1087 | "metadata": {}, 1088 | "outputs": [], 1089 | "source": [] 1090 | } 1091 | ], 1092 | "metadata": { 1093 | "kernelspec": { 1094 | "display_name": "Python [conda env:tt_fresh] *", 1095 | "language": "python", 1096 | "name": "conda-env-tt_fresh-py" 1097 | }, 1098 | "language_info": { 1099 | "codemirror_mode": { 1100 | "name": "ipython", 1101 | "version": 3 1102 | }, 1103 | "file_extension": ".py", 1104 | "mimetype": "text/x-python", 1105 | "name": "python", 1106 | "nbconvert_exporter": "python", 1107 | "pygments_lexer": "ipython3", 1108 | "version": "3.7.4" 1109 | } 1110 | }, 1111 | "nbformat": 4, 1112 | "nbformat_minor": 2 1113 | } 1114 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Python system utilizing CCXT to capture arbatrary date range of historical data from any exchange CCXT supports. 2 | 3 | **Usage** 4 | 5 | Open the historical data jupyter notebook and simply run the setup block to install dependencies. 6 | 7 | The import block at the bottom of the notebook will pull in Binance data for October 2019. 8 | 9 | 10 | **Credits?** 11 | 12 | I pulled some of this code from other soruces. I would love to credit them if I could remember where I found it. 13 | 14 | If this is your code, feel free to ping me and I'll credit you appropriately. 15 | --------------------------------------------------------------------------------