Announcement

Collapse
No announcement yet.

Quote not updated is symbol not in quote window

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Quote not updated is symbol not in quote window

    The call to function quote = esignal.GetBasicQuote(sSymbol) returns always the same value.

    I have to add the symbol in a quote window inside esignal 7.4 to get the call to update with new values.

    Do I really have to add all my symbol in a quote window? or is there a call to avoid it?

    Thanks,
    Nick.

  • #2
    Hi Nick,

    Did you call the RequestSymbol function first?

    Cheers... George

    Comment


    • #3
      Yes I did, but I still get the issue. I'm using the active X.

      What's wrong?
      Nick.

      Comment


      • #4
        In that case, I'm not sure. I think we'll need an eSignal developer to check this one out.

        Comment


        • #5
          Here's an excerpt from the vb sample.zip. When running this the Bid, Ask, and Last seem to be coming in ok. On your side are you declaring the quote object As IESignal.BasicQuote? Which varibables in the quote object is not changing?

          PHP Code:
          Private Sub esignal_OnQuoteChanged(ByVal sSymbol As StringHandles esignal.OnQuoteChanged
                  Dim quote 
          As IESignal.BasicQuote
                  
                  quote 
          esignal.GetBasicQuote(sSymbol)
                  
                  
          edtBid.Text Str(quote.dBid)
                  
          edtAsk.Text Str(quote.dAsk)
                  
          edtLast.Text Str(quote.dLast)
              
          End Sub 
          Regards,
          Jay F.
          Product Manager
          _____________________________________
          Have a suggestion to improve our products?
          Click Support --> Request a Feature in eSignal 11

          Comment

          Working...
          X