Robert,
I am going to assume that I wrote that code at some point as I always use a "m" in front of my memory variables. LOL.
Version A: is the histogram, and when plotted that way shows you when the macd crosses the signal line, ie cross 0 line
Version B: is the signal line
you are missing the MACD...
try this>>>>
MACD: plot as a solid line mp1:=Input("Short MA",1,377,8); mp2:=Input("Long MA",1,377,17); Mov(C ,mp1 ,E )- Mov(C ,mp2 ,E )
Signal:plot as a dashed black line in same window as macd
mp1:=Input("Short MA",1,377,8); mp2:=Input("Long MA",1,377,17); mp3:=Input("Signal MA",1,377,9); Mov( (Mov(C ,mp1 ,E )- Mov(C ,mp2 ,E )),mp3,E)
Histogram:plot as a histogram in another window
mp1:=Input("Short MA",1,377,8); mp2:=Input("Long MA",1,377,17); mp3:=Input("Signal MA",1,377,9); (Mov(C,mp1,E)-Mov(C,mp2,E))-(Mov((Mov(C,mp1,E)-Mov(C,mp2
"Is anyone finding that using MS has made a significant difference in thier trading/investing profits? "
I like MS but any good TA package would have increased my profits...
hope that clears it up for ya... bmacdog |