Hi,
I kindly request some help. I have created Static Vars by way of the
following:
WLSymbols = CategoryGetSymbols(categoryWatchlist,WLnr);
etc.
for ( x = 0 ; x<MaxNrSecs ; x++ )
{
Ticker = StrExtract ( WLSymbols, x );
E_r="Exp(R)_"+Ticker;
StaticVarSet(E_r,Param(E_r,0,0,10));
if (RemoveSV ==1)StaticVarRemove(E_r);
}
The problem I experience is that I cannot seem to get rid of the
initial StaticVars-params in the Parameters-window after I switch to
a different watchlist, not by coding this as above via StaticVarRemove
(E_r) within the loop, nor by calling it in a seperate loop.
Any help appreciated.
PS