int WindowBarsPerChart( )
Function returns the amount of bars visible on the chart.
チャート上に表示されているバーの本数を返します。
Sample:
サンプル:
1 2 3 4 5 6 7 | // work with visible bars. int bars_count=WindowBarsPerChart(); int bar=WindowFirstVisibleBar(); for(int i=0; i<bars_count; i++,bar--) { // ... } |