Functions by Category Functions by Alphabetical list
PlotFixedLine ([value],[color],[style]) |  |
This function plots a fixed horizontal line 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: - Dots: Horizontal line as dots.
- Dashes: Horizontal line as dashes.
A solid line is drawn as a default. Example: PlotFixedLine(0,Yellow); #plot a fixed yellow line at zero
PlotFixedLine(70,Grey); #plot a fixed grey line at 70
PlotFixedLine(30,Grey,Dots); #plot a fixed grey line as dots at 30
Related functions: PlotPrice , PlotColumn , PlotSetScale , PlotLine , PlotText , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawText , DrawRectangle , DrawFilledRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|