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

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: Greg Butcher who wrote (2194)8/13/1998 7:17:00 PM
From: bdog  Read Replies (1) of 4056
 
Greg, here is how I make em MACD soup:

The signal line is a xday ema of the macd. The histogram is macd - signal.

These allow for custom input, I have yet to combine all three as a simple drop and I do it this way so I can give each a different color , as of now ms allows only one color for 1 indicator

this gives you a 13 34 89, to change value do it in formula or in parameter box when dragging , but keep all 3 the same

put macd and signal in same panel with 0 line
macd formula:

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

signal line:
use dashed lines for style

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)

in a separate panel...
macd histogram:
use bars for style

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))

bdog
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext