Support Board
Date/Time: Tue, 25 Aug 2026 08:44:01 +0000
Post From: Extend Closes Until Future Intersection and Line Until Future Intersection ACSIL Function
| [2026-07-14 21:54:45] |
| kachowdary11 - Posts: 12 |
|
First, your turnaround time and accuracy in understanding user issues is impressive — 5/5 from my end. Based on your responses, here is my conclusion: The workaround you referenced — AlwaysExtendToEndOfChart = 1 — avoids the bar-validation auto-stop on lines drawn with sc.AddLineUntilFutureIntersectionEx(). However, this in turn causes the label text to render over the value scale, with no available fix (as noted in your previous response deferring label position control). My only viable path forward is to redraw active extending lines on every bar using: LineStruct.EndBarIndex = sc.Index; LineStruct.AlwaysExtendToEndOfChart = 0; and track whether a line is still active via a separate flag variable in my study, rather than relying on EndBarIndex alone. Feature request: One of the following would resolve this cleanly: Add a new s_LineUntilFutureIntersection::BarValidation_Flag member to control whether bar-validation auto-stop applies to a given line — allowing AlwaysExtendToEndOfChart = 0 without triggering premature termination. OR, if AlwaysExtendToEndOfChart = 1 is the intended/supported path for always-extending lines, add label position and alignment control to s_LineUntilFutureIntersection so the label can be anchored correctly. Looking forward to seeing one of these addressed in a future release. Thanks again for the support. |
