Using Excel 2007/VBA and the API to bring in T&S on stocks, but at least 95% of the lFlags are set to 0 (Undertermined). Opening and using the T&S window in eSig gives the same result.
This is my filter:
tsFilter.sSymbol = "AA"
tsFilter.bQuotes = False
tsFilter.bTrades = True
tsFilter.lNumDays = 1
tsFilter.bFilterPrice = False
tsFilter.bFilterVolume = True
tsFilter.lVolume = 10000
tsFilter.bFilterQuoteExchanges = False
tsFilter.bFilterTradeExchanges = False
It doesn't just happen with AA, either.
What needs to be done to correct this? Does this have something to do with the conflation bit I have read about?
George
This is my filter:
tsFilter.sSymbol = "AA"
tsFilter.bQuotes = False
tsFilter.bTrades = True
tsFilter.lNumDays = 1
tsFilter.bFilterPrice = False
tsFilter.bFilterVolume = True
tsFilter.lVolume = 10000
tsFilter.bFilterQuoteExchanges = False
tsFilter.bFilterTradeExchanges = False
It doesn't just happen with AA, either.
What needs to be done to correct this? Does this have something to do with the conflation bit I have read about?
George
Comment