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 |