I am using the C++ sample to create 15 min real time data, using GetBasicQuote() calls.
While the price data seems OK, the vol data is off. To construct vol, I zero out vol every 15 mins. On OnQuoteChange() call, I add the value of Quote.lLastSize to the vol data. I then record the Volume for the 15 minute sample at the end of 15 minutes for that ticker, zero that volume, and re-start.
Using another source that uses vol deltas every 15 min, the ESignal is 3 - 5 times too big. If I add up all 15 min data vol from ESignal at the end of the day, same results: vol is 3 - 5 times too big.
Are all "Quote.lLastSize" legit?
Also, there are no examples of C++ usage of XMLGetBasicQuote() and so I cant integrate this into my app. And why is the state of the docs for C++ so poor?
While the price data seems OK, the vol data is off. To construct vol, I zero out vol every 15 mins. On OnQuoteChange() call, I add the value of Quote.lLastSize to the vol data. I then record the Volume for the 15 minute sample at the end of 15 minutes for that ticker, zero that volume, and re-start.
Using another source that uses vol deltas every 15 min, the ESignal is 3 - 5 times too big. If I add up all 15 min data vol from ESignal at the end of the day, same results: vol is 3 - 5 times too big.
Are all "Quote.lLastSize" legit?
Also, there are no examples of C++ usage of XMLGetBasicQuote() and so I cant integrate this into my app. And why is the state of the docs for C++ so poor?
Comment