@chriskimera said:
I need to be able to get last 20 days High, Low, Open and Close? is it possible to get it through tick history
@chriskimera Why do you think there is a limitation of 1000 ticks? I can download 5000 ticks with no issues. 5000 data points is the limit. Also, I see two confusing statements. Are you looking for ticks or OHLC? Please give me following details and I can give you the exact JSON needed.
Symbol -
granularity - (whether tick, day, min, etc)
startTime -
endTime -
@Arnab said:
Also, I see two confusing statements.
That's maybe because we are two persons asking two slightly different things? I would be interested in the tick history of Randoms. For Randoms (I tried with R_50) I was not able to download more than 1000 ticks. Also, 5000 seems a lot, but in fact - in the case of Randoms - it is just less than 3 hours. Would it be possible to overcome that limit?
Moreover, once it was possible to download random markets tick history, as reported here: https://blog.binary.com/historical-prices-for-random-markets-now-available/, but now it seems it is not available any more. Why?
Thanks!
@Arnab said:
Also, I see two confusing statements.
That's maybe because we are two persons asking two slightly different things? I would be interested in the tick history of Randoms. For Randoms (I tried with R_50) I was not able to download more than 1000 ticks. Also, 5000 seems a lot, but in fact - in the case of Randoms - it is just less than 3 hours. Would it be possible to overcome that limit?
Moreover, once it was possible to download random markets tick history, as reported here: https://blog.binary.com/historical-prices-for-random-markets-now-available/, but now it seems it is not available any more. Why?
Thanks!
I just tested this code and it returns 4999 data points. That is one less than 5000. I believe that should be enough of tick data. { "ticks_history": "R_50", "end": "latest", "count": 4999 }
You can pass start and end time (in seconds). In that case, count is not necessary. However you have to make sure that you are not asking for more than 4999 data points. If you do, server will return you 500 data points only.
Hi
How can I get historical tick data of EURUSD for at least 6 months? (and no, the MT5 will not do the job as it totally differs from the tick data over the webtrader/binary platform...) 5000 ticks are not enough..
Comments
@chriskimera Please use https://developers.binary.com/api/#ticks_history
It seems you cannot get more than 1000 ticks... Would it be possible to extend this limit?
I need to be able to get last 20 days High, Low, Open and Close? is it possible to get it through tick history
@chriskimera Why do you think there is a limitation of 1000 ticks? I can download 5000 ticks with no issues. 5000 data points is the limit. Also, I see two confusing statements. Are you looking for ticks or OHLC? Please give me following details and I can give you the exact JSON needed.
Symbol -
granularity - (whether tick, day, min, etc)
startTime -
endTime -
That's maybe because we are two persons asking two slightly different things? I would be interested in the tick history of Randoms. For Randoms (I tried with R_50) I was not able to download more than 1000 ticks. Also, 5000 seems a lot, but in fact - in the case of Randoms - it is just less than 3 hours. Would it be possible to overcome that limit?
Moreover, once it was possible to download random markets tick history, as reported here: https://blog.binary.com/historical-prices-for-random-markets-now-available/, but now it seems it is not available any more. Why?
Thanks!
I just tested this code and it returns 4999 data points. That is one less than 5000. I believe that should be enough of tick data.
{ "ticks_history": "R_50", "end": "latest", "count": 4999 }
You can pass start and end time (in seconds). In that case, count is not necessary. However you have to make sure that you are not asking for more than 4999 data points. If you do, server will return you 500 data points only.
Let me know if that helps.
Hi
How can I get historical tick data of EURUSD for at least 6 months? (and no, the MT5 will not do the job as it totally differs from the tick data over the webtrader/binary platform...) 5000 ticks are not enough..
Thank you for your answer in advance!
Cheers
Stellio
You might be able to do it in chunks using consecutive date ranges?