Support Board
Date/Time: Wed, 03 Sep 2025 15:09:23 +0000
Post From: How do i limit my acsil study to calculate on bar close only?
[2025-06-25 12:23:16] |
maxima120 - Posts: 153 |
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. |