Functions by Category Functions by Alphabetical list
PlotSetScale ([values]...[columns]) |  |
This function sets the scaling that is used in all subsequent plot commands. This function allows the chart to built in layers with different layers having a different scaling. The last layer will have values shown on the chart scale. Any value or column can be passed into this function, in any order. When a column is used the scaling will be based upon the contents of that column. Example: #Set the scaling based upon values
PlotSetScale(0,100);
#Set the scaling based upon the High, Low and an 40 bar EMA of the close
PlotSetScale(High,Low,EMA(Close,40));
#Set the scaling based upon the High and Low and the values 16 and 56
PlotSetScale(Low,16,High,56);
Related functions: PlotPrice , PlotColumn , PlotFixedLine , PlotLine , PlotText , PlotFixedLine , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawText , DrawRectangle , DrawFilledRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|