Support Board
Date/Time: Sun, 07 Sep 2025 23:00:35 +0000
Post From: Countdown timer on different graph region
[2025-08-19 18:20:37] |
User166108 - Posts: 75 |
Hi, I don't think the Tool.Region == 0 condition is necessary. I have a secondary region that is actually my main region (unnecessary complication is my middle name) and there doesn't seem to be any region to restrict it to region 0. Indeed, copying the source code and removing that condition has it work as I expected so long as the "based on" setting is correct.if (Tool.Region == 0 && Input_UseCurrentPriceForVP.GetYesNo() != 0) { int ValueIndex = sc.ArraySize - 1; Tool.BeginValue = sc.Close[ValueIndex]; Tool.UseRelativeVerticalValues = false; } else { Tool.UseRelativeVerticalValues = true; } |