setDefaultBarFgColor()

ICE Data Services -

setDefaultBarFgColor()


setDefaultBarFgColor( color [, index] )

This function sets the default foreground color for a series value that is being returned to the chart for plotting. Generally called from within the preMain() function.

Parameters

color
the color to use
index
optional. an integer identifying the return index from main()


Usage
 
function preMain() {
   setPriceStudy(true);
   setStudyTitle("Example Script");
   setCursorLabelName("EMA", 0);
   setDefaultBarFgColor( Color.blue, 0 );
   setDefaultBarBgColor( Color.yellow, 0 );
   setShowTitleParameters( false );
}