Functions by Category Functions by Alphabetical list
PlotColumn ([column],[color],[style]) |  |
This function plots a column on a chart. This function can only be used within a chart object. Color can be any color constant, or result from the color function. Style can be one of the following: - Vline: Vertical line.
- Dots: Horitontal line as dots.
- Dashes: Horitontal line as dashes.
Examples: #plot the close as a blue line
PlotColumn(Close,Blue);
#plot the commodity channel index as a gold line
PlotColumn(CCI(14),Gold);
#plot the 180 bar ema of the close as a blue line
PlotColumn(EMA(Close,180),Blue);
#plot the 13 bar ema of the 14 RSI as a light red line in dots
PlotColumn(EMA(RSI(14),13),Lred,Dots);
#plot the close of as a RBG color as dashes
PlotColumn(Close,Color(123,74,150),Dashes);
#plot the contents of variable $line, in Red, as dots
PlotColumn($line,Red,Vline);
Related functions: PlotPrice , PlotFixedLine , PlotSetScale , PlotLine , PlotText , PlotFixedLine , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawText , DrawRectangle , DrawFilledRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|