PureBytes Links
Trading Reference Links
|
Thanks, I have a variation of this which I find interesting:
Plot(C,"C",1,64);Lookback=1;
p = (H+L+C)/3;
r1 = (2*p)-L;
s1 = (2*p)-H;
Plot(StrToNum(NumToStr(LLV(s1,Lookback))),"Moving Low",colorRed,1);
Plot(StrToNum(NumToStr(HHV(r1,Lookback))),"Moving High",colorGreen,1);
GraphXSpace=3;
Regards,
Pal
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
wrote:
> Try also to move your cursor from bar to bar in
>
> Plot(C,"C",1,64);Lookback=50;
> Plot(StrToNum(NumToStr(LLV(L,Lookback))),"Moving Low",colorRed,1);
> Plot(StrToNum(NumToStr(HHV(H,Lookback))),"Moving
High",colorGreen,1);
> GraphXSpace=3;
>
> Enjoy !!
> Dimitris Tsokakis
>
> --- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS"
<TSOKAKIS@xxxx>
> wrote:
> > ...need this ?
> >
> > Plot(C,"C",1,64);
> > Plot(StrToNum(NumToStr(L)),"Moving Line",4,1);
> >
> > Move your cursor from bar to bar and see...
> > [amibroker 4.46.0 required]
> > Dimitris Tsokakis
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs from home.
Over 14,500 titles. Free Shipping
& No Late Fees. Try Netflix for FREE!
http://us.click.yahoo.com/ybSovB/hP.FAA/3jkFAA/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/
|