Hi, I need help in getting historical tick data
I am trying to get the historical tick data with:
lHistoryHandle = esignal.RequestHistory(sSymbol, "T", bt, nNumBars, -1, -1)
from this I got the tick data, however, it only has ask, bid, trade, and it's missing the volume.
then I tried it with:
lHistoryHandle = esignal.RequestHistory(sSymbol, "10T", bt, nNumBars, -1, -1)
this time it only gives me the volume, but there is no ask, bid and trade price.
Anyone know a way that I can get all the ask,bid,trade and volume altogether ?
Also, there are some weird number with the historical tick data, like some very small number
(like 4.032 *e^-313)
Any help will be appreciated, Thank you : )
I am trying to get the historical tick data with:
lHistoryHandle = esignal.RequestHistory(sSymbol, "T", bt, nNumBars, -1, -1)
from this I got the tick data, however, it only has ask, bid, trade, and it's missing the volume.
then I tried it with:
lHistoryHandle = esignal.RequestHistory(sSymbol, "10T", bt, nNumBars, -1, -1)
this time it only gives me the volume, but there is no ask, bid and trade price.
Anyone know a way that I can get all the ask,bid,trade and volume altogether ?
Also, there are some weird number with the historical tick data, like some very small number
(like 4.032 *e^-313)
Any help will be appreciated, Thank you : )
Comment