logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
bobylam  
#1 Posted : Thursday, September 17, 2009 3:05:01 AM(UTC)
bobylam

Rank: Member

Groups: Registered, Registered Users
Joined: 6/25/2009(UTC)
Posts: 10

How to determine divergence between Close and RSI.

thanks for your support
johnl  
#2 Posted : Saturday, September 19, 2009 9:19:27 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

Scale them first, then do your analysis:
Try this

ti := 100;

p1 := RSI(14);
p2 := C;
{------------------------------}
p1f := 100/(HHV(p1,ti)-LLV(p1,ti));
p1m := (p1-LLV(p1,ti))*p1f;
p2f := 100/(HHV(p2,ti)-LLV(p2,ti));
p2m := (p2-LLV(p2,ti))*p2f;
{------------------------------}
p1m;
p2m

Thanks goes to Equis support a few years ago for code.

bobylam  
#3 Posted : Sunday, September 20, 2009 12:44:15 AM(UTC)
bobylam

Rank: Member

Groups: Registered, Registered Users
Joined: 6/25/2009(UTC)
Posts: 10

thank you, johnl
Data  
#4 Posted : Monday, September 21, 2009 5:50:42 AM(UTC)
Data

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 5/20/2008(UTC)
Posts: 53

Thanks Johnl !
Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.