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

Notification

Icon
Error

Options
Go to last post Go to first unread
beehoney  
#1 Posted : Monday, August 18, 2014 10:29:13 PM(UTC)
beehoney

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 6/21/2014(UTC)
Posts: 9

Hello,

How can I make an Explorer for

( the close in uptrend only ) .

homano  
#2 Posted : Thursday, August 21, 2014 1:54:48 AM(UTC)
homano

Rank: Member

Groups: Registered Users, Subscribers
Joined: 8/19/2014(UTC)
Posts: 23

Thanks: 4 times
Any help please ,
henry1224  
#3 Posted : Thursday, August 21, 2014 1:21:53 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
Your definition of a close in an uptrend is a little vague!
Code:
 C>mov(C,10,S) shows when the close is greater than the 10 bar ma of the close
(Mov(C,12,S)-Mov(C,26,S))>0 shows when the 12 ma is greater than the 26 MA 
If(Sum(C>Mov(C,105,S),5)>4,1,If(Sum(C<Mov(C,105,S),5)>4,-1,0))
This is a binary signal when the close is greater than the ma for 5 days or more +1 else if the close is less than the ma for 5 days or more then -1 else 0
so you see that there are several ways to determine what an uptrend is
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.