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 ) .
|
|
|
|
Rank: Member
Groups: Registered Users, Subscribers Joined: 8/19/2014(UTC) Posts: 23
Thanks: 4 times
|
|
|
|
|
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.