Announcement

Collapse
No announcement yet.

Is there a ReleaseAllSymbols()?

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

  • Is there a ReleaseAllSymbols()?

    I see the function ReleaseAllHistory() which I assume can be used to release all eSignal handles created with RequestHistory(). Is there a similar release function for symbols such as ReleaseAllSymbols()? If no such function is available consider adding this, it would be a great option when closing a program. Currently I for loop through all the called symbols using ReleaseSymbol().

  • #2
    The ReleaseAllSymbols() function is currently not supported. For each symbol you have called RequestSymbol on, it counts against your symbol limit. Therefore, you are recommended to keep track of each symbol you have subscribed to in the past. To release a symbol, you will need to call ReleaseSymbol() individually for each symbol and update your own symbol counter.

    Comment

    Working...
    X