Environment: C#, VS 2003, IEsignal library imported by VS (version 1.0)
Two questions:
1) I subscribe to Quote events like so:
esignal.RequestSymbol ("MSFT", 1)
and want to unsubscribe from them, so I use:
esignal.ReleaseSymbol("MSFT")
I've checked that I only call RequestSymbol once and that I call ReleaseSymbol once as well, but the OnQuote event keeps firing. Any ideas? Is there a utility available to log the message traffic to verify that I'm sending the right things?
2) Inside my OnQuote event handler, I've been calling XMLGetBasicQuote instead of GetBasicQuote (what the doc that Randy e-mailed me said to use). Is this function a replacement, and GetBasicQuote is obsolete?
If you'd like the source code to my project, please let me know.
Many Thanks,
Ben
Two questions:
1) I subscribe to Quote events like so:
esignal.RequestSymbol ("MSFT", 1)
and want to unsubscribe from them, so I use:
esignal.ReleaseSymbol("MSFT")
I've checked that I only call RequestSymbol once and that I call ReleaseSymbol once as well, but the OnQuote event keeps firing. Any ideas? Is there a utility available to log the message traffic to verify that I'm sending the right things?
2) Inside my OnQuote event handler, I've been calling XMLGetBasicQuote instead of GetBasicQuote (what the doc that Randy e-mailed me said to use). Is this function a replacement, and GetBasicQuote is obsolete?
If you'd like the source code to my project, please let me know.
Many Thanks,
Ben
Comment