0.0.5 • Published 5 years ago

@davidosborn/crypto-history-parser v0.0.5

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

Crypto History Parser

A tool to parse the history of the cryptocurrency market.

Input formats

The historical data from investing.com can be downloaded in CSV format and parsed by this software. For example, this page provides BTC/USD history.

Additional formats can be supported by adding an entry to NormalizeStream._converters.

Output format

The output is an array of historical samples, ordered by time, and formatted as JSON.

Each historical sample may contain the following fields:

FieldTypeSemanticsDescription
timeNumberUNIX timestampThe opening time of the trading period.
openNumberCurrencyThe price at the opening of the trading period.
closeNumberCurrencyThe price at the closing of the trading period.
highNumberCurrencyThe highest price during the trading period.
lowNumberCurrencyThe lowest price during the trading period.
volumeNumberCurrencyThe volume during the trading period.
changeNumberPercentThe change in price during the trading period.