Support Board
Date/Time: Fri, 07 Feb 2025 18:08:40 +0000
Post From: Help with formula for volume at price location within candlestick
[2021-08-01 22:35:47] |
Sawtooth - Posts: 4173 |
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. |