PureBytes Links
Trading Reference Links
|
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
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|
|