| SetIndicColor(Color) |
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 |