Announcement

Collapse
No announcement yet.

How Do I Release All RT Symbols?

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

  • How Do I Release All RT Symbols?

    If I don't release an RT quote tracking symbol, then when I restart my C++ app the symbol is still "turned on."

    Exiting the desktop and manager do not seem to affect this -- so it looks like something server side.

    For example, (*m_piHooks)->ReleaseSymbol( symbol );

    what I am looking for is:

    (*m_piHooks)->ReleaseAllSymbols();

    Many Thanks...Adam Greissman

  • #2
    Is this what you are looking for?

    (*m_piHooks)->ReleaseAllTimeSales();

    It was added in 7.6, IIRC.

    Cheers... George

    Comment


    • #3
      Hmmm... Maybe I read that too fast.

      To the best of my knowledge, there is no Quote equivelant to the ReleaseAllTimeSales and ReleaseAllHistory functions. Just be sure to release them individually for each symbol when you're app closes.

      Cheers... George

      Comment


      • #4
        Adam, I hope you're doing well.

        ClearSymbolCache() removes all symbols in the Data Manager. Does that do the trick?

        Comment

        Working...
        X