mikeman, CatLady is right, no dual colors or styles so you need to do them separate... here's what I do, it allows for easy change of values... it defaults to the 89,34,13 of Beginning TA Hall of Fame...
use bars on the histo bdog
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:
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 histogram:
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)) |