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

Notification

Icon
Error

Options
Go to last post Go to first unread
bobhun  
#1 Posted : Tuesday, March 15, 2005 1:38:57 AM(UTC)
bobhun

Rank: Newbie

Groups: Registered, Registered Users, Unverified Users
Joined: 11/8/2004(UTC)
Posts: 6
Location: Toronto

Patrick, I wonder if you have this formula. Thanks
Patrick  
#2 Posted : Tuesday, March 15, 2005 1:48:39 AM(UTC)
Patrick

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/8/2004(UTC)
Posts: 2,266

Was thanked: 1 time(s) in 1 post(s)
I posted this a while back, let me know if it works for you : http://forum.equis.com/viewtopic.php?t=68
bobhun  
#3 Posted : Saturday, March 19, 2005 6:13:58 AM(UTC)
bobhun

Rank: Newbie

Groups: Registered, Registered Users, Unverified Users
Joined: 11/8/2004(UTC)
Posts: 6
Location: Toronto

Patrick you pointed me to this http://forum.equis.com/viewtopic.php?t=68 for the expert. I wanted it as an indicator, could you help me in writing a final formula step combining the buy and sell signal into a single indicator. Thanks
Patrick  
#4 Posted : Monday, March 21, 2005 4:09:58 PM(UTC)
Patrick

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 9/8/2004(UTC)
Posts: 2,266

Was thanked: 1 time(s) in 1 post(s)
Alright for an indicator that plots 1 for buy and -1 for sell use : Bsetup:=Sum(C<Ref(C,-4),9)=9; BCD:=HighestSince(1,Peak(1,Bsetup,.001),(C<Ref(L,-2)) + PREV); BUY:=BCD-ValueWhen(1,Bsetup,BCD)=13 AND Ref(BCD-ValueWhen(1,Bsetup,BCD)=13,-1)<>1; Ssetup:=Sum(C>Ref(C,-4),9)=9; SCD:=HighestSince(1,Peak(1,Ssetup,.001),(C>Ref(H,-2)) + PREV); SELL:=SCD-ValueWhen(1,Ssetup,SCD)=13 AND Ref(SCD-ValueWhen(1,Ssetup,SCD)=13,-1)<>1; If(BUY,1,If(SELL,-1,0)) Patrick
Users browsing this topic
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.