PureBytes Links
Trading Reference Links
|
HI Luca,
Here it goes an NR7 indicator signal I wrote, I do not
use it for an exploration, it is smotheed with a
Mov(Signal,13,S). Have a look at it. I hope it will
help.
Carlos.
=
{Narrowest Range of 7 days}
A:=H-L;
B1:=Ref(H,-1)-Ref(L,-1);
B2:=Ref(H,-2)-Ref(L,-2);
B3:=Ref(H,-3)-Ref(L,-3);
B4:=Ref(H,-4)-Ref(L,-4);
B5:=Ref(H,-5)-Ref(L,-5);
B6:=Ref(H,-6)-Ref(L,-6);
B7:=Ref(H,-7)-Ref(L,-7);
F:=ValueWhen(1,A<B1 AND A<B2 AND A<B3 AND A<B4 AND
A<B5 AND A<B6 AND A<B7,H);
Signal:=If(F>0 AND Alert(F>0,2),H,0);
F1:=Mov(Signal,13,S);
Entry:=If(C>F1 AND Ref(C,-1)<=Ref(F1,-1),C,0);
Entry
--- netfin <netfin@xxxxxxxxx> wrote:
> I am trying to run an exploration for NR7 (narrowest
> range for the
> last 7 days) and I came up with this formula:
> If(abs(h,l)<ref(abs(h-l),-1) and
> abs(h-l)<ref(abs(h-l),-2,....abs(h,l)
> <ref(abs(h-l),--7),1,0). Any thoughts or
> improvements on it?
> Thank you
> luca
>
>
__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
------------------------ 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/mk9osC/hP.FAA/3jkFAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|