Support Board
Date/Time: Mon, 03 Nov 2025 15:51:03 +0000
Post From: Help with formula for volume at price location within candlestick
| [2021-08-01 22:35:47] |
| Sawtooth - Posts: 4285 |
|
Try this: BVAP formula: =AND( BV>AV, C>O, SUM( BVAP(L, 0), BVAP(L+TICKSIZE*1, 0), BVAP(L+TICKSIZE*2, 0), BVAP(L+TICKSIZE*3, 0), BVAP(L+TICKSIZE*4, 0))> BV/2) AVAP formula: =AND( BV<AV, C<O, SUM( AVAP(H, 0), AVAP(H-TICKSIZE*1, 0), AVAP(H-TICKSIZE*2, 0), AVAP(H-TICKSIZE*3, 0), AVAP(H-TICKSIZE*4, 0))> AV/2) These formulas are meant for a 10 tick range bar. Modify as needed. |
