BlankI would like to use Composites to create Static (Persistent) arrays,
why doesn't this work from an indicator?

Sometimes it works, sometimes it accumulates values, sometimes I need to
click APPLY, and sometimes it just stores the last value.

thanks,

herman

SaveComp = ParamTrigger("Save Composite","SAVE");
ClearComp = ParamTrigger("Clear Composite","CLEAR");
if( SaveComp)
{
AddToComposite(C,"~Test123","X",atcFlagDeleteValues|atcFlagCompositeGroup|at
cFlagEnableInIndicator);
}
else if( ClearComp)
{
AddToComposite(0,"~Test123","X",atcFlagDeleteValues|atcFlagCompositeGroup|at
cFlagEnableInIndicator);
}
Plot(C,"",1,128);
Cx = Foreign("~Test123","x");
Plot(Cx,"",4,1);

Attachment: Blank Bkgrd.gif
Description: GIF image

Reply via email to