NinjaScript > Language Reference > Drawing >

BackColor

Print this Topic Previous pageReturn to chapter overviewNext page

Definition

Sets the chart panel back color for the current bar.

 

Property Value

A color structure that represents the color of this price bar.

 

Syntax

BackColor

 

 

Examples

// Sets the chart panel back color to pale green
BackColor = Color.PaleGreen;

 

// Sets the back color to the default color set in the chart properties dialog window
BackColor = Color.Empty;

 

// Sets the back color to maroon when the closing price is less than the 20 period SMA // and to lime green when above (see image below)
BackColor = SMA(20)[0] >= Close[0] ? Color.Maroon : Color.LimeGreen;

 

Drawing_1