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

Notification

Icon
Error

Options
Go to last post Go to first unread
pmg123  
#1 Posted : Sunday, June 28, 2015 10:54:31 AM(UTC)
pmg123

Rank: Newbie

Groups: Registered Users, Subscribers
Joined: 6/28/2015(UTC)
Posts: 1

I require BUY/SELL indicators formula for Metastock,  when following conditions are met:

Buy when 3EMA cross above 13EMA and 13EMA cross above 34EMA.

Sell when 3EMA cross below 13EMA and 13EMA cross below 34EMA.

mstt  
#2 Posted : Sunday, June 28, 2015 11:52:58 PM(UTC)
mstt

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 7/25/2005(UTC)
Posts: 1,042

Was thanked: 57 time(s) in 54 post(s)
Hi pmg Here's an indicator formula that combines both Buy and Sell signals; one which can be easily changed into two separate indicators with last lines of "Buy" and "Sell" respectively. If these signals alone are used for Buy and Sell in the same system then it is quite likely that some trades will return severe losses. This is because of the relatively infrequent (and unreliable) simultaneous crosses of two different EMA pairs. It might be better to test for relative values of one of the pairs, M13>M34 or M13<M34 for example. Just my opinion anyway. {Forum Request Signals} M3:= Mov(C,3,E); M13:=Mov(C,13,E); M34:=Mov(C,34,E); Buy:= Cross(M3,M13) AND Cross(M13,M34); Sell:=Cross(M13,M3) AND Cross(M34,M13); Buy-Sell; Roy (mstt)
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.