PureBytes Links
Trading Reference Links
|
Dimitris,
Another interesting chart. I find it better to replace:
Plot(R,"R",1,1); with
Plot(30*R,"R",1,1);
Steve
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
wrote:
> Try an example in Ind. builder mode:
>
> R=DEMA((C-O)/(H-L),30);Plot(R,"R",1,1);
> COND0=R>=0 AND Ref(R,-1)<0;Z0=1+BarsSince(COND0);
> AREA0=10*IIf(R>=0,Sum(R,Z0),0);Plot(AREA0,"BULL",5,2);
> COND01=R<0 AND Ref(R,-1)>=0;Z01=1+BarsSince(COND01);
> AREA01=10*IIf(R<0,Sum(R,Z01),0);Plot(AREA01,"BEAR",4,2);
> Title="R="+
> WriteVal(R,1.2)+", BULL="+
> WriteVal(AREA0,1.2)+", BEAR="+
> WriteVal(AREA01,1.2);
> It is interesting.
> DT
> --- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS"
<TSOKAKIS@xxxx>
> wrote:
> > Chuck,
> > I have already created an indicator based on this (H-L)/(C-O)
ratio.
> > It gives interesting info for trend detection, duration and
> strength
> > and I will post it next week.
> > Dimitris Tsokakis
> >
------------------------ Yahoo! Groups Sponsor ---------------------~-->
FREE Cell Phones with up to $400 Cash Back!
http://us.click.yahoo.com/_bBUKB/vYxFAA/i5gGAA/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/
|