I am a new eSignal customer and am trying to access pricing data from Excel VBA through the Desktop API. I have looked at the Desktop Reference and have searched these forums for help.
The issue I'm having is getting the connection to the API instatiated. Here is my code:
rtdClass - Class Module
Dim WithEvents esignal As IESignal.Hooks
Module1 - non-Class Module
Sub estest()
Set esignal = New IESignal.Hooks
esignal.SetApplication ("<my userid>")
Dim rtd As New rtdClass
Dim strSymbol As String, sXMLBasicQuote As String
Dim strCurrentSymbol As String, strXMLBasicQuote As String
strAnswer = esignal.IsEntitled()
msgbox strAnswer
End Sub
When I run the estest subroutine, the IsEntitled() function returns a "0". What am I doing wrong?
Thanks in advance for your help.
Jay
The issue I'm having is getting the connection to the API instatiated. Here is my code:
rtdClass - Class Module
Dim WithEvents esignal As IESignal.Hooks
Module1 - non-Class Module
Sub estest()
Set esignal = New IESignal.Hooks
esignal.SetApplication ("<my userid>")
Dim rtd As New rtdClass
Dim strSymbol As String, sXMLBasicQuote As String
Dim strCurrentSymbol As String, strXMLBasicQuote As String
strAnswer = esignal.IsEntitled()
msgbox strAnswer
End Sub
When I run the estest subroutine, the IsEntitled() function returns a "0". What am I doing wrong?
Thanks in advance for your help.
Jay
Comment