SetIndicColor(Color)

SetIndicColor procedure is used to by default the color that will be used to display this indicator.

 

This procedure has one parameter:
Color   This parameter sets the default color. To create the color you can use RGB function or one the built-in colors. To see a list of these colors go to SetBarColor

 

Example:

' This is an indicator
Sub Main()
  Temp = GetIndic("RSI")
  Temp = Slope(Temp, 10)
  SetIndicColor(RGB(10, 25, 150))
  SetIndic Temp
End Sub