Indicators: Slope_Direction_Line

 

Slope_Direction_Line:

The Slope Direction Line indicator is displayed as a colored moving average line indicating the average market movement direction.

Slope_Direction_Line

Author: Scriptor

 
hi, was just wondering if this indicator repaints. i am not very good at coding, so i thought i would just cut out any uncertainty and ask the author of the indicator!
 
judging by the lack of response, and the results of my back testing, this indicator does sometime give false signals. 
 
can anyone explain how to extract color change for ea conditions?
 
Jerzy J #:
can anyone explain how to extract color change for ea conditions?

  

   The line color is based on the slope of the line. Positive for Green, Negative for Red.

   BufferTrend[] array is buffer number 3 for the trend direction.  1 for up, -1 for down. 

   So read buffer 3 using  iCustom(indicatorname,3,1)  to determine its trend indication.  

 
maximo #:

  

   The line color is based on the slope of the line. Positive for Green, Negative for Red.

   BufferTrend[] array is buffer number 3 for the trend direction.  1 for up, -1 for down. 

   So read buffer 3 using  iCustom(indicatorname,3,1)  to determine its trend indication.  I

thank you. its sound easy. i will work on it tommorow

Reason: