PureBytes Links
Trading Reference Links
|
Hi
This looks like it will do what you are after - make plot4 a histo -
different colour from that of plot3
Plot1(MACD(Close,FastMA,SlowMA),"MACD");
Plot2(XAverage(MACD(Close,FastMA,SlowMA),MacdMA),"MACDAvg");
if plot1 - plot2 > plot1[1] - plot2[1] then begin
Plot3(plot1-plot2,"MADiffup");
end
else begin
plot4(plot1-plot2,"Madiffdn") ;
end ;
Rgds Stuart
From: "Preston Morrow" <prestonm@xxxxxxxxxxx>
To: "LIST - OMEGA" <omega-list@xxxxxxxxxx>
Subject: Fw: MACD Histogram: 1-color UP, 1-color DN
Date: Tue, 31 Oct 2000 09:59:59 -0600
From: Preston Morrow
To: LIST - OMEGA
Sent: Tuesday, October 31, 2000 8:36 AM
Subject: MACD Histogram: 1-color UP, 1-color DN
is there an easy means of changing the OMEGA MACD histogram to show one
color when it is greater that the previous bar & another color when the bar
is less than the previous bar.
thanx, preston
|