Can anyone help me, please ?
I'm trying to request the closing prices of 2 symbols. I use the RequestHistory-Function to receive the reply (VB-Code is following). That's NO problem, it works!
historyHandle = esignal.RequestHistory(symbol, "D", btDAYS, 2, -1, -1)
When I receive the reply from eSignal, it's calling the esignal_OnBarsReceived-Function. So that is also OK.
But how can I discover the name of the symbol, because I only have the historyHandle (a number) in the esignal_OnBarsReceived-Function ???
Why I want this feature. Because I would like to save the closing price and the corresponding symbolname (not the historyHandle)
in a datastructure.
Thx...
I'm trying to request the closing prices of 2 symbols. I use the RequestHistory-Function to receive the reply (VB-Code is following). That's NO problem, it works!
historyHandle = esignal.RequestHistory(symbol, "D", btDAYS, 2, -1, -1)
When I receive the reply from eSignal, it's calling the esignal_OnBarsReceived-Function. So that is also OK.
But how can I discover the name of the symbol, because I only have the historyHandle (a number) in the esignal_OnBarsReceived-Function ???
Why I want this feature. Because I would like to save the closing price and the corresponding symbolname (not the historyHandle)
in a datastructure.
Thx...
Comment