Support Board
Date/Time: Wed, 30 Apr 2025 11:23:16 +0000
Post From: Highlighting Volume in Numbers Bars
[2025-04-25 15:20:22] |
John - SC Support - Posts: 39559 |
The best solution to this is to create a custom study, or pay to have one done. Refer to the following: Advanced Custom Study Interface and Language (ACSIL) https://www.sierrachart.com/index.php?page=doc/SierraChartStudyAndSystemProgrammers.php It can somewhat be done with the "Spreadsheet Formula" study, but the formula gets lengthy, and depending on the time frame of your chart, you may not be able to cover the entire bar with the formula. The idea is that the Alert syntax allows you to access the Total Volume, Bid Volume, and Ask Volume at a price level - therefore you would have to check each price level individually to see if it matches what you want. But this will only get you one result per bar. Here is an example of the formula you would enter if you want to highlight when the Bid is greater than 50 for the first 3 levels starting at the Low of the bar: =IF(BVAP(L, 0) > 50, L, IF(BVAP(L + TICKSIZE, 0) > 50, L + TICKSIZE, IF(BVAP(L + 2 * TICKSIZE, 0) > 50, L + 2 * TICKSIZE, 0))) You would then set the Subgraph Draw Style to an item that marks the level you want. Refer to the following: Spreadsheet Formula Study/Chart Alerts And Scanning: Special Functions Chart Studies: Subgraphs Tab >> Draw Style For the most reliable, advanced, and zero cost futures order routing, use the Teton service: Sierra Chart Teton Futures Order Routing Date Time Of Last Edit: 2025-04-25 15:21:41
|