Announcement

Collapse
No announcement yet.

multiple requests simulteneously

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

  • multiple requests simulteneously

    Hi RObi,

    Is there a way to request multiple sybols history/quote at once.

    Thanks
    Umit

  • #2
    If you mean something like:

    Code:
    symbols = {"IBM", "DELL", "C", "HD", "ES #F"}
    RequestHistory(symbols)
    Then the answer is no. However, it is allowed to send multiple single requests without waiting for the results of any one request.

    Code:
    foreach symbol in symbols
       RequestHistory(symbol)
    endforeach
    Cheers... George

    Comment

    Working...
    X