I am a new user with the initial objective of generating a simple "snapshot" of the market 3 - 4 times during the trading day and a final download for posting final closing prices. The file I need to create is as follows (prices are since the open):
symbol, open, high, low, close, volume (cumulative since open)
This should be simple, but isn't. The code retrieves price and volume correctly sometimes and then sometimes it doesn't work at all or works partially retrieving only random symbols.
I am using RequestHistory(symbol, 390, btBARS, 1, 390, 780) (California time) in C++ code. The symbol list right now is only about 600 stocks but will expand to about 3000+ when I am done. That is another problem. ReleaseHistory/ReleaseSymbol only works some of the time so I sometimes get an error about my symbol limit (not always though). There are so many issues going on it is hard to know which hole to plug first.
I see others are recently having problems with the same issues I have encountered and you suggested XMLGetBasicQuote. Ok, I will try anything. Where is the documentation? I tried the group Robi suggested and could find no mention.
These quotes need to be realtime, but I don't care if it takes a few minutes to pull the data. As long as it is completely accurate and complete for that time's snapshot.
All help is appreciated.
symbol, open, high, low, close, volume (cumulative since open)
This should be simple, but isn't. The code retrieves price and volume correctly sometimes and then sometimes it doesn't work at all or works partially retrieving only random symbols.
I am using RequestHistory(symbol, 390, btBARS, 1, 390, 780) (California time) in C++ code. The symbol list right now is only about 600 stocks but will expand to about 3000+ when I am done. That is another problem. ReleaseHistory/ReleaseSymbol only works some of the time so I sometimes get an error about my symbol limit (not always though). There are so many issues going on it is hard to know which hole to plug first.
I see others are recently having problems with the same issues I have encountered and you suggested XMLGetBasicQuote. Ok, I will try anything. Where is the documentation? I tried the group Robi suggested and could find no mention.
These quotes need to be realtime, but I don't care if it takes a few minutes to pull the data. As long as it is completely accurate and complete for that time's snapshot.
All help is appreciated.
Comment