Data/crypto/readme.md
QuantConnect hosts crypto data provided by CryptoTick.
The data contains both Trade and Quote data. Using the ToolBox applications GDAXDownloader and BitfinexDownloader, you can obtain historical trade data for free, but not quote data with this method.
You can also download crypto data (trades and quotes starting with Tick and ending with Minute resolution) for a fee on our website. You can explore the data and purchase it at https://www.quantconnect.com/data/tree/crypto
CSV files are stored in compressed zip files, each containing a single CSV file.
Crypto data supports the following Resolutions:
The markets we currently support are:
tickType in this documentation can refer to one of the following:
All times are in UTC unless noted otherwise.
Second/Minute files are located in the crypto / market / resolution / symbol folder.
The zip files have the filename: YYYYMMDD_tickType.zip. The CSV file contained within has the filename: YYYYMMDD_symbol_resolution_tickType.csv
Second/Minute trade format and example data is as follows:
| Time | Open | High | Low | Close | Volume |
|---|---|---|---|---|---|
| 92000 | 132.01 | 132.05 | 131.95 | 132.03 | 49320 |
Second/Minute quote format and example data is as follows:
| Time | Bid Open | Bid High | Bid Low | Bid Close | Last Bid Size | Ask Open | Ask High | Ask Low | Ask Close | Last Ask Size |
|---|---|---|---|---|---|---|---|---|---|---|
| 92000 | 132.01 | 132.05 | 132.00 | 132.03 | 24932.5 | 132.02 | 132.07 | 132.01 | 132.04 | 1200 |
Hour/Daily files are located in the crypto / market / resolution folder.
The zip files have the filename: symbol_tickType.zip. The CSV file contained within has the filename: symbol.csv
Hour/Daily trade format and example data is as follows:
| Time | Open | High | Low | Close | Volume |
|---|---|---|---|---|---|
| 20180101 08:00 | 40.10 | 45.99 | 40.05 | 45.50 | 209342 |
YYYYMMDD HH:mmHour/Daily quote format and example data is as follows:
| Time | Bid Open | Bid High | Bid Low | Bid Close | Last Bid Size | Ask Open | Ask High | Ask Low | Ask Close | Last Ask Size |
|---|---|---|---|---|---|---|---|---|---|---|
| 20190224 00:00 | 10.10 | 10.12 | 10.10 | 10.11 | 209324.91 | 10.11 | 10.13 | 10.11 | 10.12 | 290253 |
YYYYMMDD HH:mmTicks files are located in the data / crypto / market / tick folder.
The zip files have the filename format: YYYYMMDD_tickType.zip. The CSV file contained within has the filename format: YYYYMMDD_symbol_resolution_tickType.csv
Tick trade format and example data is as follows:
| Time | Last Price | Quantity |
|---|---|---|
| 86400 | 232.40 | 93.1 |
Tick quote format and example data is as follows:
| Time | Bid Price | Bid Size | Ask Price | Ask Size |
|---|---|---|---|---|
| 86400 | 232.40 | 20392.0 | 232.42 | 8059.5 |