SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Metastock 6.0 for Window -- Ignore unavailable to you. Want to Upgrade?


To: julianne carol grimes who wrote (2876)3/5/1999 11:58:00 PM
From: keith massey  Respond to of 4056
 
You may want to give these a shot. This allows you to input the values when you open the indicator. If you don't want exp. weighted than change the E's to S's.

MACD
mp1:=Input("Short MA",1,377,13);
mp2:=Input("Long MA",1,377,34);
Mov(C ,mp1 ,E )- Mov(C ,mp2 ,E )

MACD signal line
mp1:=Input("Short MA",1,377,13);
mp2:=Input("Long MA",1,377,34);
mp3:=Input("Signal MA",1,377,89);
Mov( (Mov(C ,mp1 ,E )- Mov(C ,mp2 ,E )),mp3,E)

MACD - Signal Line
mp1:=Input("Short MA",1,377,13);
mp2:=Input("Long MA",1,377,34);
mp3:=Input("Signal MA",1,377,89);
(Mov(C,mp1,E)-Mov(C,mp2,E))-(Mov((Mov(C,mp1,E)-Mov(C,mp2,E)),mp3,E))

Best Regards
KEITH



To: julianne carol grimes who wrote (2876)3/6/1999 12:01:00 AM
From: Jan Robert Wolansky  Read Replies (1) | Respond to of 4056
 
bookmark this page--it's full of indicator formulas and other good stuff:

geocities.com



To: julianne carol grimes who wrote (2876)3/6/1999 2:46:00 AM
From: Richard Estes  Read Replies (3) | Respond to of 4056
 
Just change the "E" to "W", you should look at all MAs

(Mov(C,13,W)-Mov(C,34,W)) - Mov(Mov(C,13,W)-Mov(C,34,W) , 89,W)

Buy sell on 0 trigger. plot as histogram.