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: Robert V. Cavaleri who wrote (3603)7/31/2000 1:53:23 AM
From: bdog  Read Replies (1) | Respond to of 4056
 
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