Support Board
Date/Time: Mon, 25 Nov 2024 21:31:04 +0000
Post From: Retracement Levels not showing
[2024-02-08 14:27:40] |
User43 - Posts: 101 |
Like user User719512 mentioned You are setting the begin and end value to the same, that will result in all retracement lines being on top of each other. Tool.BeginValue = sc.ActiveToolYValue;
Tool.EndValue = sc.ActiveToolYValue; Try something like Tool.BeginValue = sc.ActiveToolYValue;
Tool.EndValue = Tool.BeginValue + 10; and you should see your 3 lines |