Hi,
I would like to submit a modification to the api.
could you add to the
Hooks1BarsReceived(ASender: TObject; lHandle: Integer)
Hooks1BarsChanged(ASender: TObject; lHandle: Integer)
events the symbol, which would look like
Hooks1BarsReceived(ASender: TObject; lHandle: Integer; symbol:string)
Hooks1BarsChanged(ASender: TObject; lHandle: Integer; symbol:string)
I'm going to try to explain why:
after a request history I associate the handle with a symbol so that I can retreive the symbol when I get the event but sometimes the active x goes so fast that I go straight in the event before I could even associate the handle with the symbol. this is very disturbing.
Is anybody else having the same issue?
I certainly do not want to associate the data with the handle because I have to free the handle just after retreiving my data and get a new one very often...
Thanks,
Nicolas.
I would like to submit a modification to the api.
could you add to the
Hooks1BarsReceived(ASender: TObject; lHandle: Integer)
Hooks1BarsChanged(ASender: TObject; lHandle: Integer)
events the symbol, which would look like
Hooks1BarsReceived(ASender: TObject; lHandle: Integer; symbol:string)
Hooks1BarsChanged(ASender: TObject; lHandle: Integer; symbol:string)
I'm going to try to explain why:
after a request history I associate the handle with a symbol so that I can retreive the symbol when I get the event but sometimes the active x goes so fast that I go straight in the event before I could even associate the handle with the symbol. this is very disturbing.
Is anybody else having the same issue?
I certainly do not want to associate the data with the handle because I have to free the handle just after retreiving my data and get a new one very often...
Thanks,
Nicolas.
Comment