Bitcoin Forum

Economy => Trading Discussion => Topic started by: JWT on July 25, 2017, 08:36:51 PM



Title: Historical OHLC market data
Post by: JWT on July 25, 2017, 08:36:51 PM
Hello.
I am looking for 1 minute BTC and altcoins market data.
Is there any place where it's possible to download it?
Or maybe there are some standalone data downloader?
Any help would be appreciated.

Thank You.


Title: Re: Historical OHLC market data
Post by: Serpens66 on July 25, 2017, 10:10:57 PM
not sure if it is OHLC:
http://api.bitcoincharts.com/v1/csv/

edit:
https://poloniex.com/support/api/
and you can get it directly from poloniex API, but lowest period is 300 seconds:
Quote
returnChartData

Returns candlestick chart data. Required GET parameters are "currencyPair", "period" (candlestick period in seconds; valid values are 300, 900, 1800, 7200, 14400, and 86400), "start", and "end". "Start" and "end" are given in UNIX timestamp format and used to specify the date range for the data returned. Sample output:

[{"date":1405699200,"high":0.0045388,"low":0.00403001,"open":0.00404545,"close":0.00427592,"volume":44.11655644,
"quoteVolume":10259.29079097,"weightedAverage":0.00430015}, ...]

Call: https://poloniex.com/public?command=returnChartData&currencyPair=BTC_XMR&start=1405699200&end=9999999999&period=14400


Title: Re: Historical OHLC market data
Post by: JWT on July 26, 2017, 05:08:12 PM
Thanks


Title: Re: Historical OHLC market data
Post by: whydifficult on July 26, 2017, 11:43:25 PM
You can use gekko, it can import OHLC data directly from selected exchanges: https://gekko.wizb.it/docs/features/importing.html


Title: Re: Historical OHLC market data
Post by: JWT on August 12, 2017, 03:55:04 PM
Any other more userfriendly options?