[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MACD Modifications Help



PureBytes Links

Trading Reference Links

MTG,

Here you are. 

MACD MA Differential

.ela attached


{
*******************************************************************
    
	Study		: MACD MA Diff
	
	Last Edit	: 1/06/2000

	
********************************************************************}
Input: FastMA(3),SlowMA(10),MacdMA(16);
Vars: 	V1(0),V2(0);

V1=MACD(Close,FastMA,SlowMA);
V2=XAverage(MACD(Close,FastMA,SlowMA),MacdMA);

Plot1(V1-V2,"MADiff");

{*********************************************)

Alan


--- MTG <mtg2@xxxxxxxxxxxxx> wrote:
> according to Ts 40 the MACD has three inputs
> namely the
> MACD displayed as a line
> MACD Avg. also displayed as a line
> and the MACD Diff displayed as a histogram
> I was wondering is there any way to only have the
> histogram plot and to
> blank out or better yet not even display the first
> two lines when
> printing a cht??
> I someone can be kind enough to do this then I will
> be glad to explain
> how I use it and the relevant inputs etc.
> 
> Thanks very much in advance
> 
> Mike
> 
>