"Stochastic MA" (Metastock)?

Trojen

Junior member
Messages
33
Likes
3
This coding is labeled "Stochastic MA" (Metastock)

Enter Long
mov(stoch(55,21),5,w)>ref(mov(stoch(55,21),5,w),-1) and
mov(stoch(55,21),5,w)<75 and
mov(stoch(55,21),5,w)>20

Can anyone decifer this code for me. I am familar with Stoc as well as MAs but an MA of the Stoc??
It looks as if there are thresholds as well.

Thanks a mill
 
Are you asking:

Enter long if the ma of stoch is moving higher and between 25 and 75 ?
 
Kinger

Thanks for your reply.

I am trying to figure out the code.

What you say seems to make sense read against the code.
Yet, that would only define a range not a particular point of entry, not so?

Here is the "close Long":
(mov(stoch(55,21),5,w)<75 and
ref(mov(stoch(55,21),5,w),-1)>75)
 
Top