PureBytes Links
Trading Reference Links
|
Thanks Howard I will have a good look at this. Thanks for taking the
time for me.
Chris
--- In amibroker@xxxxxxxxxxxxxxx, "Howard B" <howardbandy@xxx> wrote:
>
> It seems to work fine.
> Try this version with plots and a 5 bar holding period:
>
> SMA = EMA( C, 21 );
> LMA = EMA( C, 125 );
> Cond1 = C < LMA;
> Cond2 = Cross ( SMA, C );
> Short = Cond1 AND Cond2;
> Cover = BarsSince(Short)>=5;
>
> Plot(C,"C",colorBlack,styleCandle);
> Plot(SMA,"SMA",colorRed,styleLine);
> Plot(LMA,"LMA",colorGreen,styleLine);
> Plot(Cond1,"Cond1",colorRed,styleDots|styleOwnScale);
> PlotShapes(Cond2*shapeDownArrow,colorPink);
>
> You can see what is happening and when.
>
> Thanks,
> Howard
>
>
>
> On 18 Mar 2007 03:42:45 -0700, cjandhnandh <chrisbizoz@xxx> wrote:
> >
> > Hi all,
> >
> > I am trying to code a short system with one of the conditions of
the Buy
> > being C < 125 period EMA. This condition is being ignored in scans
etc.
> >
> > For example:
> >
> > SMA = EMA( C, 21 );
> > LMA = EMA( C, 125 );
> > Cond1 = C < LMA;
> > Cond2 = Cross ( SMA, C );
> > Short = Cond1 AND Cond2;
> > Cover = 0;
> >
> > Cond1 is completely ignored.
> >
> > Can anyone confirm this or is it just me??
> >
> > Thanks,
> >
> > Chris
> >
> >
> >
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Transfer from your equities account.
Receive up to $1,000 from GFT. Click here to learn more.
http://us.click.yahoo.com/aZttyC/X_xQAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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/
|