--- In [email protected], "murthysuresh" <[EMAIL PROTECTED]> wrote: > > [... removed] > > Thanks for your response. It works for me now. What is the syntax to > remove a symbol from watchlist using a script. Is there one? > > Thanks in advance. > > Seede >
This should work:
if (watchlist <= 32)
oAT.WatchListBits &= ~(1 << watchlist);
else
oAT.WatchListBits2 &= ~(1 << ( watchlist - 32 ));
