Quick question: Is it possible to assign a color to a variable? I've tried things like var MyColor = Color.blue to no avail. Perhaps the best that can be done is var MyR = 0; var MyG=0; var MyB=255; and use Color.RGB(MyR, MyG, MyB)?
I want to have the color of various different bits of text on my charts depend on their values without having to duplicate the whole drawTextAbsolute statement for each color.
I want to have the color of various different bits of text on my charts depend on their values without having to duplicate the whole drawTextAbsolute statement for each color.
Comment