The Time and sales download is not working using the active X.
I can't find any time and sales download code in the C example.
I'm using the following delphi code:
filter.sSymbol:=symbol;
filter.bQuotes:=0;
filter.bTrades:=1;
filter.lNumDays:=10;
filter.bFilterPrice:=0;
filter.bFilterVolume:=0;
filter.bFilterTradeExchanges:=0;
filter.bFilterQuoteExchanges:=0;
timeAndSale:=Hooks1.RequestTimeSales[filter];
store(timeAndSale,symbol);
the store function is not called, the program fires the event before and I cannot get the handle back and associate it with a symbol. I found a workaround for this issue but after it gets worse...
The data that comes back in the event is garbage, and the event is called many time until I get an esignal "Not enough storage is available to complete this operation" exception.
I hope the esignal 7.6 beta will solve my issue. Anyway maybe somebody found the solution with 7.5.
I can't find any time and sales download code in the C example.
I'm using the following delphi code:
filter.sSymbol:=symbol;
filter.bQuotes:=0;
filter.bTrades:=1;
filter.lNumDays:=10;
filter.bFilterPrice:=0;
filter.bFilterVolume:=0;
filter.bFilterTradeExchanges:=0;
filter.bFilterQuoteExchanges:=0;
timeAndSale:=Hooks1.RequestTimeSales[filter];
store(timeAndSale,symbol);
the store function is not called, the program fires the event before and I cannot get the handle back and associate it with a symbol. I found a workaround for this issue but after it gets worse...
The data that comes back in the event is garbage, and the event is called many time until I get an esignal "Not enough storage is available to complete this operation" exception.
I hope the esignal 7.6 beta will solve my issue. Anyway maybe somebody found the solution with 7.5.
Comment