Support Board
Date/Time: Wed, 05 Nov 2025 05:53:12 +0000
Post From: Retracement Levels not showing
| [2024-02-08 14:27:40] |
| User43 - Posts: 102 |
|
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 |
