WindowBarsPerChart

2019/07/17 19:00
117

int WindowBarsPerChart()

チャート上に表示されている足の数を返す。

Sample:
// work with visible bars.
int bars_count=WindowBarsPerChart();
int bar=WindowFirstVisibleBar();
for(int i=0; i< bars_count; i++,bar–)
{
// …
}

コメント