PureBytes Links
Trading Reference Links
|
I was hoping someone could help me out on this. Just starting to use
the software and really like it so I'm trying to do generate a small
indicator. What is happening is that it is printing
a "dotlocationlong" and "dotlocationshort" on each bar. What I'd
like it to do is plot one or the other or none depending on the logic
that is in the code. Basically if the close is above both MA's and
the short ma is above the long ma plot a green dot. Similarily on
the down side where a red dot will be plotted. The rest of the bars
should have no dots.
Colour and location of dots is ok and is working fine.
Any help would be appreciated.
thx and here's the code:
dotlocationLong = L - 3;
dotlocationShort = H + 3;
for(i=0; i<BarCount;i++)
{
if((C[i] > PivotMALong[i]) AND (C[i] > PivotMAShort[i]) AND
(PivotMAShort[i] > PivotMALong[i]))
Plot(dotlocationLong,"Long",ParamColor( "Color3",
colorGreen ), ParamStyle("Style3",styleDots | styleNoLine) );
else
if((C[i] < PivotMALong[i]) AND (C[i] < PivotMAShort
[i]) AND (PivotMAShort[i] < PivotMALong[i]))
Plot(dotlocationShort,"Short",ParamColor
( "Color4", colorRed ), ParamStyle("Style3",styleDots |
styleNoLine) );
}
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|