Functions by Category Functions by Alphabetical list
DrawText ([x],[y],[string],[color]) |  | This function draws text on a chart. This function is similar to PlotText, however this function uses an absolute coordinate system. The top left of the chart is at 0,0.This function is useful for placing addition text on a chart for debugging. Color can be any color constant, or result from the color function. Example: #draws the number of bars in blue at the top left corner of the chart
DrawText(0,0,'Number of bars '.NumberOfBars,Blue);
Related functions: PlotPrice , PlotColumn , PlotFixedLine , PlotSetScale , PlotLine , PlotText , PlotFixedLine , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawRectangle , DrawFilledRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|