Help in making Metastock formula

#1
I wish to compare the value (if it is high or low) of MACD i.e. (Mov(MACD(),9,E)) with previous bar. Can somebody please help me in creating a formula syntax for metastock
 
#2
I wish to compare the value (if it is high or low) of MACD i.e. (Mov(MACD(),9,E)) with previous bar. Can somebody please help me in creating a formula syntax for metastock
you want to explore such scrips or your want to create an expert to overlay on price bars showing the conditioning either by different colors or by arrow ?

regds,
 

yasu222

Active Member
#3
I wish to compare the value (if it is high or low) of MACD i.e. (Mov(MACD(),9,E)) with previous bar. Can somebody please help me in creating a formula syntax for metastock

PHP:
a:=(Mov(MACD(),9,E)); 
b:=Ref(a,-1); 
C=(a-b); 
Ref(C,1))
 
Last edited:

Similar threads