×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

RGB - MultiCharts
Open main menu

RGB

Revision as of 14:39, 17 January 2012 by 194.84.116.138 (talk) (Created page with "Returns an RGB color number that corresponds to the specified combination of red, green, and blue component color values; the number ranges from 0 to 16777215 and represents o...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Returns an RGB color number that corresponds to the specified combination of red, green, and blue component color values; the number ranges from 0 to 16777215 and represents one of 16 M colors.

Usage

RGB (Red,Green,Blue)

Where:

Red

– a numerical value from 0 to 255, specifying the Red component of the RGB color

Green

– a numerical value from 0 to 255, specifying the Green component of the RGB color

Blue

– a numerical value from 0 to 255, specifying the Blue component of the RGB color

Example

Create an Orange color plot using the RGB color combination:

Plot1(Open);
SetPlotColor(1,RGB(224,160,32));