Support Board
Date/Time: Mon, 03 Mar 2025 17:33:32 +0000
Post From: Number Bars Calculated Values as a histogram
[2021-11-02 16:18:32] |
User907968 - Posts: 833 |
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) |