Functions by Category Functions by Alphabetical list
PlotPrice ([Price type],[Open Column],[High Column],[Low Column],[Close Column]) |  |
Plots the price in the current chart. This function can only be used within a chart object. Two options for the price type: Bar: Plots the price as bars Candle: Plots the price as candlesticks.
You can also pass in optional Open, High, Low and Close columns which override the base price columns. If no scaling has been set, this function will create a scale based upon the High and Low columns otherwise the price will be plotted using the scale in effect. Example: #Plots Open,High,Low and Close as bars
PlotPrice('Bar');
#Plots Open,High,Low and Close as candlesticks
PlotPrice('Candle');
#Override the base columns
PlotPrice('Candle',EMA(Open,5),EMA(High,5),EMA(Low,5),EMA(Close,5));
Related functions: PlotColumn , PlotFixedLine , PlotSetScale , PlotLine , PlotText , PlotFixedLine , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawText , DrawRectangle , DrawFilledRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|