Login Page - Create Account

Support Board


Date/Time: Mon, 07 Jul 2025 11:37:49 +0000



Post From: How do i limit my acsil study to calculate on bar close only?

[2025-06-25 12:23:16]
maxima120 - Posts: 151
I have this in the manual loop acsil:

for (int i = sg.UpdateStartIndex; i < sg.ArraySize; ++i)
{
    if(sc.GetBarHasClosedStatus(i) != BHCS_BAR_HAS_NOT_CLOSED) continue;


but nonetheless I got prints for every tick even if bar is not closed. this study is applied to a study which is applied to renko bar chart.