Seer logo - advanced backtesting for stock, futures and forex trading systems using using technical analysis indicators, charts, money management and position sizing
Functions by Category Functions by Alphabetical list

PlotColumn ([column],[color],[style])

Usable in an seer chart object

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:

  1. Vline: Vertical line.
  2. Dots: Horitontal line as dots.
  3. 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

© 2008 seer trading systems ltd
feedback FAQ legal privacy