double WindowPriceMin(int index=0)
Returns minimal value of the vertical scale of the specified subwindow of the current chart (0-main chart window, the indicators’ subwindows are numbered starting from 1). If the subwindow index has not been specified, the minimal value of the price scale of the main chart window is returned.
現在チャートの指定されたサブウィンドウ(0-メインチャート ウィンドウ、インディケータのサブウィンドウは、1 から番号付けられます。)の縦のスケールの最小値を返します。もし、サブウィンドウのインデックスが指定されなかったら、メインチャート ウィンドウの価格スケールの最小値が返されます。
参照 WindowPriceMax()、WindowFirstVisibleBar()、WindowBarsPerChart()
Parameters:
パラメータ:
1 2 | <b>index</b> - Chart subwindow index (0 - main chart window). チャート サブウィンドウのインデックス(0 - メインチャート ウィンドウ) |
Sample:
サンプル:
1 2 3 4 5 6 7 8 9 10 11 | double top=WindowPriceMax(); double bottom=WindowPriceMin(); datetime left=Time[WindowFirstVisibleBar()]; int right_bound=WindowFirstVisibleBar()-WindowBarsPerChart(); if(right_bound<0) right_bound=0; datetime right=Time[right_bound]+Period()*60; //---- ObjectCreate("Padding_rect",OBJ_RECTANGLE,0,left,top,right,bottom); ObjectSet("Padding_rect",OBJPROP_BACK,true); ObjectSet("Padding_rect",OBJPROP_COLOR,Blue); WindowRedraw(); |