Syntax
Public Sub LineColor(chart_ID As Long, name As Variant, value As long)
Description
This function used to set color to specific Line indicator by given the line name .
Parameters
Key | Description |
chart_index | Chart identifier, 0 is the current chart ,value of type Long |
name | Line indicator name, value of type String. |
value | Color value of type Long. |
Return value
No returned value.
Sample
Public Sub main () Dim Color Color = RGBColor (255,255,255) LineColor (0,Inidicator name, Clng(Color)) End sub
See Also