MACD Indicator - Line vs Histogram

 

Is there a way of changing thehistogram in the MACD MACD indicator from a histogram to a line? Anyone aware of a code to do this if not feasible within exising indicator.

 

In the MACD code under Customer Indicators, change:

SetIndexStyle(0,DRAW_HISTOGRAM);

to

SetIndexStyle(0,DRAW_LINE);

 
blogzr3:

In the MACD code under Customer Indicators, change:

SetIndexStyle(0,DRAW_HISTOGRAM);

to

SetIndexStyle(0,DRAW_LINE);


Perfect - Thanks.
 
po547:

Perfect - Thanks.


great.