Functions by Category Functions by Alphabetical list
DrawFilledRectangle ([Top left x],[Top left y],[Bottom right x],[Bottom right y],[color]) |  |
This function draws a filled rectangle on a chart. This function draws a filled rectangle based upon the passed in parameters. This function uses a absolute coordinate system based in pixels. The coordinate 0,0 is the top left corner of the chart. Color can be any color constant, or result from the color function. Example: #draw a filled rectangle in blue from 5,5 to 50,50
DrawFilledRectangle(5,5,50,50,Blue);
#draw a filled rectangle in red from 5,5 to 70,70
DrawFilledRectangle(5,5,70,70,Red);
Related functions: PlotPrice , PlotColumn , PlotFixedLine , PlotSetScale , PlotLine , PlotText , PlotFixedLine , PlotCandlestick , PlotTellTale , PlotPAC , PlotBand , PlotGrid , DrawLine , DrawText , DrawRectangle , SetChartOption , Color , Dashes , Dots , Vline , SetBarBackground , SetBarColor , ChartInputSlider , ChartInputCombobox
|