Hi Karl, thanks so much for this software.
As for my question, I'm trying to draw a realtime chart using your software. The problems I see are as follows.
1. If I use the ReqHistoricalData function, one of the arguments is the end time. I could be wrong, but it seems I would need to constantly call ReqHistoricalData function and pass in the current datetime. This leads to some lag problems because I have to first query for the current server time, right?
2. Another option is to use the reqMarketData function once, which is great because the tick event will constantly fire off. The problem is that the data passed via the tick event handler does not have a time associated with it. So if I am creating a 15 minute chart, I would have to calculate the 15 minute intervals myself...and to be the most precise I would have to constantly call the function to get the current server time.