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

Notification

Icon
Error

Options
Go to last post Go to first unread
hughes1970  
#1 Posted : Wednesday, June 10, 2020 9:52:51 AM(UTC)
hughes1970

Rank: Member

Groups: Registered, Registered Users, Unverified Users
Joined: 7/17/2009(UTC)
Posts: 14

Please

I would like to create an explorations price in close cross moving average
Thanks for your help
MS Support  
#2 Posted : Wednesday, June 10, 2020 3:04:04 PM(UTC)
MS Support

Rank: Advanced Member

Groups: Moderators, Registered, Registered Users, Subscribers
Joined: 10/8/2010(UTC)
Posts: 1,929

Thanks: 85 times
Was thanked: 154 time(s) in 150 post(s)
Originally Posted by: hughes1970 Go to Quoted Post

Please

I would like to create an explorations price in close cross moving average
Thanks for your help

Hello,

There are a few details that would need to be considered such as the type of moving average and whether the signal is for long/short, but as an example of the Closing price crossing Up through a 10-period exponential moving average:

Code:
Cross(C,Mov(C,10,E));

You could also write the formula for the Closing price crossing Down through a 10-period exponential moving average by switching the moving average and closing price order within the Cross parentheses:

Code:
Cross(Mov(C,10,E),C);

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.