I am attempting to load historical tick data with code
tickHistoryHandle = objESignalApp.get_RequestHistory( symbol, "1T",IESignal.barType.btDAYS, 10, -1, -1);
As a result, which elements of the BarData data structure supposed to contain data?
In my case dTickBid, dTickAsk, dTickTrade, and bfFlags are always zeros and dOpen, dClose, dHigh, and dLow have a same value.
Am I calling get_RequestHistory correctly? If not, how should I get that historical tick data?
Thanks.
tickHistoryHandle = objESignalApp.get_RequestHistory( symbol, "1T",IESignal.barType.btDAYS, 10, -1, -1);
As a result, which elements of the BarData data structure supposed to contain data?
In my case dTickBid, dTickAsk, dTickTrade, and bfFlags are always zeros and dOpen, dClose, dHigh, and dLow have a same value.
Am I calling get_RequestHistory correctly? If not, how should I get that historical tick data?
Thanks.
Comment