VarSet("shape1",
shapeDigit1);
VarSet("shape2", shapeDigit2);
VarSet("shape3", shapeDigit3);
VarSet("shape4", shapeDigit4);
// etc,....
Buy = mtRandomA()> 0.9;
n = 0;
shape = Null;
for ( i = 0; i < BarCount; i++ )
{
if ( Buy[i] )
{
n++;
shape[i] = VarGet( "shape" + n );
}
}
Plot(C,"", 39, styleBar);
PlotShapes( shape, colorGreen, 0, L);
On 10/31/2009 2:22 PM, Anthony Faragasso wrote:
I have a plotshapes added to an
indicator...when I try to add an offset the shape disappears...any
help appreciated...
example:
PlotShapes(shapeDigit1*(Low==trs),colorYellow);
Also, I am doing line touches...How can I
manipulate the digits to plot concurrently..
like: first touch is digit 1 , second touch is
digit 2...etc....starting from left to right..
Thank you
Anthony