Support Board
Date/Time: Mon, 25 Nov 2024 12:36:23 +0000
Post From: Coding Question: How to draw 5 parallel lines 1% apart?
[2024-03-10 21:36:57] |
User656492 - Posts: 143 |
Update for those who are climbing this mountain. I found some insight in a related support request. All levels are specified as a floating point percentage (Example: 0.618) of Tool.BeginValue. So in this example, 50.0 = Begin Value * .5. Tool.RetracementLevels[0] = 100.0f; Tool.RetracementLevels[1] = 61.8f; Tool.RetracementLevels[2] = 50.0f; Tool.RetracementLevels[3] = 38.2f; Tool.RetracementLevels[4] = 23.6f; Tool.RetracementLevels[5] = 0.0f; The answer is to go negative. Tool.RetracementLevels[0] = -1.0f; <== BeginValue + 1% |