PureBytes Links
Trading Reference Links
|
Thanks for your reply sir....
I'm sorry that I wasn't totally clear on my initial
post.
I want to be able to search the last 14 days to find
where the:
Williams%R rise above -50
PPO rise above -0
AROON GREEN Crosses over AROON RED
I don't want these to stay above for 14 days I want to
find where this has just occured over the last 14
days.
I look forward to your reply
--- Roy Larsen <rlarsen@xxxxxxxxxxxxxx> wrote:
> DETWIN
>
> Here are the three things you asked for. Hope this
> helps your understanding.
>
> Roy
>
> > Hello, would appreciate some assistance, Thanks in
> > advance..
> >
> > 1. Aroon Crossover (20) Green Crossing Over Red -
> > for the last 14 days.
> >
> > 2. Wm%R (20) rise above -50 - for the last 14
> days.
> >
> > 3. PPO (Price Oscillator) (8,24,8) rise abover 0
> -
> > for the 14 days.
> >
> > Number in brackets represent settings..
>
> {Aroon-Up}
> N:=Input("Periods",1,999,20);
> A:=100*(N-HHVBars(H,N+1))/N;
> {Aroon-Down}
> B:=100*(N-LLVBars(L,N+1))/N;
> BarsSince(Cross(A,B))>=14 AND
> BarsSince(Cross(A,B))<BarsSince(Cross(B,A));
>
> {Williams %R}
> Sum(WillR(20)>-50,14)=14;
>
> {Price Oscillator}
> Sum(OscP(8,24,E,%)>0,14)=14;
>
>
__________________________________
Do you Yahoo!?
Yahoo! Finance Tax Center - File online. File on time.
http://taxes.yahoo.com/filing.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|