Support Board
Date/Time: Wed, 23 Apr 2025 01:50:31 +0000
Post From: Demand Index study not displaying
[2024-12-06 21:32:28] |
John - SC Support - Posts: 39428 |
We do see an issue with the SmallValue and how it is used, but it is at this part of the code: if (Divisor > SmallValue)
Calculation1 = 1 - (Dividend / Divisor); Since the Divisor in this case could be small, this check was causing the issue. We have changed this to be the following: if (Divisor != 0)
Calculation1 = 1 - (Dividend / Divisor); This will be out in the next pre-release. For the most reliable, advanced, and zero cost futures order routing, use the Teton service: Sierra Chart Teton Futures Order Routing |