Mapping historic market data

1 · Christian · Dec. 11, 2017, midnight
Market data is generally represented as an array of arrays, and each entry is a data point that represents a "snapshot" of the market in a given period of time. Each data point contains information like the timestamp, open/close price, high/low price and the volume of transactions in this period. Here is a recent sample of a few data points for the currency pair LTC-EUR on the market gdax: const marketData = [ [ 1513025761, // time 161, // low 163.11, // hig...