I am trying to download all tick data for SPY
?
?m_pClient->reqHistoricalTicks(19001, ContractSamples::SPY_ETF(), TimeCode, "", 1000, "TRADES", 1, true, TagValueListSPtr());
?
I am getting all the data for 9:30 -> 16:00 hours Using this method
?
?
//! [tickbytickalllast]
void TestCppClient::tickByTickAllLast(int reqId, int tickType, time_t time, double price, int size, const TickAttrib& attribs, const std::string& exchange, const std::string& specialConditions) {
?
?
?
BUT when I look they are some prints that are late but don't show up calling reqHistoricalTicks()? (beyond 16:00 hours) See attached image.
?
Anyone know how I can get all the late prints that come after 16:00 hours???
?
?
?