Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/13/2006(UTC) Posts: 53 Location: Verona - Italy
|
In the Explorer I find the function "CROSS" but I need to set an exploration in different way.
For example, Close Cross UP Moving Average or Close Cross DOWN Moving Average
How can I proceed?
Thank you.
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
MS Users Manual wrote:SYNTAX:
cross( DATA ARRAY 1, DATA ARRAY 2 )
FUNCTION
Plots a "+1" on the day that DATA ARRAY 1 crosses above DATA ARRAY 2. Otherwise, "0" is plotted.
If you want to know when DATA ARRAY 1 crosses below DATA ARRAY 2, use the formula "cross( DATA ARRAY 2, DATA ARRAY 1)"
EXAMPLE cross( close, mov(close,9,e) )
So in your cases:
Close Cross UP Moving Average
Cross(Close, MA);
Close Cross DOWN Moving Average
Cross(MA,Close);
wabbit :D
|
|
|
|
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.