This is a trading item or a component that was created using QuantShare by one of our members.
This item can be downloaded and used by QuantShare Trading Software.
Trading items are of different types. There are data downloaders, trading indicators, trading systems, watchlists, composites/indices...
You can use this item and hundreds of others for free by downloading QuantShare.
Top Reasons Why You Should Use QuantShare:
Works with US and international markets (stock, forex, options, futures, ETF...)
Offers you the tools that will help you become a profitable trader
Allows you to implement any trading ideas
Exchange items and ideas with other QuantShare users
Our support team is very responsive and will answer any of your questions
We will implement any features you suggest
Very low price and much more features than the majority of other trading software
For Free - No Credit Card Required
Volume near Price Level - Detect Strong Support & Resistance Areas
Volume near price is a technical indicator that returns the total volume near the current price level that occurred in previous periods. For each period, the indicator calculates the total volume of the previous N period where the close price was between the current price and a threshold value (+-). The higher the indicator value the more shares were traded near the current price level and this also indicates that the current level is a potential strong support or resistance.
The trading indicator lets you define the lookback and threshold values. Example:
dis1 = avg(high - low, 300);
a = VolumeNear(300, dis1);
The lookback period is set to 300 and the threshold value is set to the average distance between the high and low prices.
Here is an example that shows you how to detect a strong support area:
- First, I calculate the price position within the high/low area to determine whether we are near a potential support or a resistance.
- Then I measure the strength of the support by checking the "VolumeNear" indicator value with its highest value over the last 100 periods.
The formula to detect a strong support area is:
period = 300;
dis1 = avg(high - low, period);
a = VolumeNear(period, dis1);
closeposition = ((close - llv(low, 100)) / (hhv(high, 100) - llv(low, 100)));
support1 = (a == hhv(a, 100)) and closeposition < 0.3;
plot(support1, "Support Area", colorRed, ChartLine, StyleOwnScale);