It looks like you're new here. If you want to get involved, click one of these buttons!
with complete stacktrace of the error
Ticker7 = New Ticker(MyAPIKey, MyAccessToken)
AddHandler Ticker7.OnTick, AddressOf Ontick7
Ticker7.Connect()
Ticker7.Subscribe(Tokens:={"260105"})
Ticker7.SetMode(Tokens:={"260105"}, Mode:=Constants.MODE_FULL)
and here is the Ontick7 event
Private Sub Ontick7(tickdata As Tick) Handles Ticker7.OnTick
Try
Me.Invoke(Sub()
Me.Label2.Text = tickdata.LastPrice
End Sub)
Catch ex As Exception
txtLog.Text = txtLog.Text & Environment.NewLine & DateTime.Now & " " & ex.Message
End Try
and When I check the connection status for Ticker7.isconnected, i am getting False.