eSignalObj.ReleaseAllHistory();
eSignalObj.ReleaseAllTimeSales();
eSignalObj.RequestSymbol(ESignalSymbol, 0);
IESignal.BasicQuote quote = eSignalObj.get_GetBasicQuote(ESignalSymbol);
I am using this bit of code to request last trade price or trade price of last tick.
Here's the price I received with timestamp for YM #F symbol:
12324, 17/06/2008 15:00:00
12324, 17/06/2008 15:00:03
Whereas the actual price was 12281. I continuously received same wrong price for 3 minutes. This may affect me huegly as my strategies make decision based on this data.
eSignalObj.ReleaseAllTimeSales();
eSignalObj.RequestSymbol(ESignalSymbol, 0);
IESignal.BasicQuote quote = eSignalObj.get_GetBasicQuote(ESignalSymbol);
I am using this bit of code to request last trade price or trade price of last tick.
Here's the price I received with timestamp for YM #F symbol:
12324, 17/06/2008 15:00:00
12324, 17/06/2008 15:00:03
Whereas the actual price was 12281. I continuously received same wrong price for 3 minutes. This may affect me huegly as my strategies make decision based on this data.
Comment