CandleOutlineColor

Description

Candle outline color changes the border/outline color (including the wick) of a bar.

If the color of the bar is changed using BarColor and the outline is not changed using CandleOutlineColor, the outline color is adjusted to match the color of the bar.

See Colors, BarColor, BackColor, BarColorSeries, BackColorAll, CandleOutlineColor.

Parameter

a color object of the type "public struct color"

Usage

CandleOutlineColor

Example

if (SMA(14)[0] > SMA(200)[0])
CandleOutlineColor = Color.LimeGreen;
else
CandleOutlineColor = Color.Red;

Last updated