PureBytes Links
Trading Reference Links
|
Hi Roy,
I have looked at your weekly RSI formula and its puzzling to say the
least.
I wanted to make these 2 oscillators into weekly indicators but have
not succeeded
1st Weekly Indicator
(Mov(If(HIGH>Ref(HIGH,-1), HIGH-Ref(HIGH,-1), 0),13,S) /
(Mov(If(HIGH>Ref(HIGH,-1), HIGH-Ref(HIGH,-1), 0),13,S) +
Mov(If(LOW<Ref(LOW,-1), Ref(LOW,-1)-LOW, 0),13,S)) )
2nd Weekly Indicator
x1:=If(Ref(H,-2),< ,Ref(C,-7),
If(Ref(H,-2),<,Ref(C,-8),
If(H,<,Ref(L,-5),
If(H,<,Ref(L,- 6),0,1),1),1),1);
x2:=If(Ref(L,-2),> ,Ref(C,-7),
If(Ref(L,-2),>,Ref(C,-8),
If(L,>,Ref(H,-5),
If(L,>,Ref(H,- 6),0,1),1),1),1);
SubValues:=(x1) * (x2) * (H-Ref(H,-2) ) +((x1) * (x2) * (L-Ref(L,-2)) );
AbsDailyVal:=(Abs(H-Ref(H,-2)) + Abs(L-Ref(L,-2)));
Sum((SubValues),8) / Sum((AbsDailyVal),8)
Could you help me? If you are too busy, which is understandable, I
will keep on trying using your RSI weekly indicator to guide me.
Thanks
Norman
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/zMEolB/TM
--------------------------------------------------------------------~->
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/
|