RGB

From MultiCharts
Revision as of 07:42, 19 February 2012 by JoshM (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

Notes

See for example this Wikipedia entry or this web page for an extensive list of RGB colors.

Example

Create an Orange color plot using the RGB color combination:

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