Support Board
Date/Time: Thu, 26 Jun 2025 22:35:23 +0000
Post From: Number Bars Calculated Values as a histogram
[2021-11-02 16:18:32] |
User907968 - Posts: 840 |
You could the spreadsheet formula study mentioned above and invert the negative delta for example: =IF(BV>AV,(AV-BV)/V*-1,(AV-BV)/V) Or If you want different colors for each of pos and neg delta, use two copies of the study, for example: Pos: =IF(AV>=BV,(AV-BV)/V,0) Neg: =IF(BV>AV,(AV-BV)/V*-1,0) |