PureBytes Links
Trading Reference Links
|
Jayson,
In your x/y>.9 you divide by zero and this may cause some further
confusion. On the other side, before this, you ask (x AND y), which
implies x==1 AND y==1, ie x/y to be equal to 1. After this, what is
the meaning of x/y>.9 ?
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> Steve,
> Here is my approximation of the Pristine Buy and Sell signals. To
plot the
> arrows just paste to the top of your price code. Let me know how
you make
> out with any of the others disciplines....
>
> Regards,
> Jayson
>
>
>
> x=(MA(C,20)<Ref(MA(C,20),-10));
> y=(MA(C,50)<Ref(MA(C,50),-10));
> Short1=((x AND y) AND x/y>.9) AND (L>Ref(L,-1) AND Ref(L,-1)>Ref(L,-
2) AND
> Ref(L,-2)>Ref(L,-3))AND C<MA(C,50);
> x1=(MA(C,20)>Ref(MA(C,20),-10));
> y1=(MA(C,50)>Ref(MA(C,50),-10));
> long1=((x1 AND y1) AND y1/x1>.9) AND (H<Ref(H,-1) AND Ref(H,-1)<Ref
(H,-2)
> AND Ref(H,-2)<Ref(H,-3))AND C>MA(C,50);
> range=ATR(14)*.75;
> triggerl=(Ref(Long1,-1) AND H>(L+range) AND C>Ref(C,-1));
> triggers=(Ref(Short1,-1) AND L<(H-range) AND C<Ref(C,-1));
>
> PlotShapes(triggerl, colorBrightGreen, 0,C-ATR(1) );
> PlotShapes(triggers*2, colorRed, 0,C+ATR(1) );
>
> -----Original Message-----
> From: stevemajors [mailto:stevemajors@x...]
> Sent: Monday, August 11, 2003 2:47 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Pristine Trading Method testing
>
>
> Has any one written systems to test the "Pristine" trading styles
> (Core, Swing, Gurrella etc.)? Just checking if there if someone had
> already coded these styles before I tried to code them. Any
comments
> on there use would be appreciated.
>
> Thanks
>
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|