Login Page - Create Account

Support Board


Date/Time: Thu, 30 Apr 2026 16:37:45 +0000



Study for highlighting composite low volume

View Count: 23

[2026-04-30 09:43:54]
User616054 - Posts: 35
Hello Sierra Team & Community - Can anyone recommend an existing study that can be used to highlight multiple consecutive low volume nodes which cross the same price level? see attached screenshot for example, I would like draw a line when 4 low volume nodes (represented by low % volume profile for each 5 min rotation) cross a level.
imagescreenshot.JPG / V - Attached On 2026-04-30 09:42:25 UTC - Size: 85.03 KB - 13 views
Attachment Deleted.
[2026-04-30 14:38:21]
John - SC Support - Posts: 45880
There is not a built-in tool that can do this.

Be aware of the following Alert options that can give you the Total Volume, Bid Volume, and Ask Volume at a price level for each bar:
Study/Chart Alerts And Scanning: Special Functions

Since the "Spreadsheet Formula" study uses the Alert syntax (despite its name), you can capture values through that study. For instance, the following would give you the Bid Volume at a price of 5000.00 for each bar:
=BVAP(5000.00, 0)

The Offset in that function is to move between bars, so you could compare the price at a level with other bars, such as the following to give a True value (1) when the Bid Volume at the curent bar is less than 10 and the Bid Volume at the next bar is less than 10:
=AND(BVAP(5000.00, 0) < 10, BVAP(5000.00, 1) < 10)

There is also the ability to use the shortcut names for the bars to get a relative price. Refer to the following:
Study/Chart Alerts And Scanning: Available Main Price Graph Identifiers/Variables

So you could use something like the following to test the high of one bar against the same price at the next bar:
=AND(BVAP(H, 0) < 10, BVAP(H, 1) < 10)

But, this can get out of hand to test against a lot of bars. Therefore, we recommend creating a custom study for what you want. Refer to the following:
ACSIL Programming Concepts: Accessing Volume at Price Data Per Bar

https://www.sierrachart.com/index.php?page=doc/SierraChartStudyAndSystemProgrammers.php
For the most reliable, advanced, and zero cost futures order routing, use the Teton service:
Sierra Chart Teton Futures Order Routing

To post a message in this thread, you need to log in with your Sierra Chart account:

Login

Login Page - Create Account