Announcement

Collapse
No announcement yet.

Mulipule Qoutes

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

  • Mulipule Qoutes

    Hi,
    I used GetBasicQuote(Symbol) property to get singel qoute data.
    Is there any other method to get multiple qoutes, like passing 10s of symbols separted by "," and get return like csv Tabel.

  • #2
    I got a C++ example from http://share.esignal.com/groupconten...r=&groupid=185
    But Is there another VB one.

    Comment


    • #3
      Are you referring to the Multiple Quote Requests sample?
      It's only available in C++ at the moment.

      Comment


      • #4
        Yap, the C++ Multiple Quote Requests sample.
        It is not easy fro me to follow the C++ code.
        But is the idea is to have

        Read the symbol list from the text file
        Loop through the list
        Create an instance the ActiveX and then this ActiveX instance will get run-time quote for one symbol.
        Loop end

        Is it true?
        Thanks

        Comment


        • #5
          Keep in mind that you only need to instantiate the IEsignal instance once. You can then loop through the file and call
          IEsignal.RequestSymbol for each symbol in the list. (See RequestChunk())

          Subsequent OnQuoteChanged (Symbol s) event will be fired for each symbol requested. (See UpdateQuote)

          You can look at other VB samples for general usage of the Desktop API.

          Comment

          Working...
          X