Jman Donchian Bounded Volume Oscillator For ThinkOrSwim

Jman831

Expert
Plus
Hey fellow traders,

I finally came up with a new indicator to share with you all that I call the "Donchian Bounded Volume Oscillator". To understand how it works please read the description starting at line 3 in the code itself.

Edit: I meant to say when initially making this post that the copyright in the code allows for anyone to reuse, make adaptations, or changes to the code for both personal and commercial use as long as you include the first line of this code in the code somewhere. In other words, you're free to do with it as you please as long as you give credit where credit is due.

Code:
#Donchian Bounded Volume Oscillator © 2025 by Jman831 @ usethinkscript.com is licensed under Creative Commons Attribution-ShareAlike 4.0 International.

#This code calculates the percentage difference between two averages of volume specified by the user. It then finds the highest and lowest percentage differences of the last so many bars ("DonchianLength") specified by the user. Finally it plots the percentage difference as a percentage between the highest and the lowest percentage differences forcing an upper boundary of 100% and a lower boundary of -100%. If the oscillator tops off at 100% or bottoms out at -100% the oscillator is making new highs or new lows respectively.

declare lower;

#Short Average Inputs
input ShortAvgType = averageType.SIMPLE;
input ShortAvgLength = 9;
#Long Average Inputs
input LongAvgType = averageType.SIMPLE;
input LongAvgLength = 12;
#Length of Donchian Channel Within Which Oscillator Percentage Is Bound
input DonchianLength = 72;

#Short Average Of Volume
def shavg = MovingAverage(ShortAvgType, volume, ShortAvgLength);
#Long Average Of Volume
def loavg = MovingAverage(LongAvgType, volume, LongAvgLength);
#Raw Difference Between Short And Long Averages
def avgdiff = shavg - loavg;
#Percentage Difference Between Short And Long Averages
def diffper = Round(avgdiff / loavg * 100, 2);
#Highest Percentage Difference
def donhigh = highest(diffper, DonchianLength);
#Lowest Percentage Difference
def donlow = lowest(diffper, DonchianLength);
#Middle Of Highest And Lowest Percentage Differences
def donmid = (donhigh + donlow) / 2;

#Bounded Percentage Based On Highest And Lowest
def boundedosc = Round((diffper - donmid) / (donhigh - donmid) * 100, 2);

#Upper Boundary Percentage
plot OneHundred = 100;
#Middle
plot Zero = 0;
#Lower Boundary Percentage
plot NegativeOneHundred = -100;
#Donchian Bounded Volume Oscillator
plot DonchianBoundedVolumeOsc = boundedosc;

#Default Color For Upper Boundary
OneHundred.setDefaultColor(color.VIOLET);
#Default Color For Middle
Zero.setDefaultColor(color.CYAN);
#Default Color For Lower Boundary
NegativeOneHundred.setDefaultColor(color.VIOLET);
#Histogram Painting Strategy For Bounded Oscillator
DonchianBoundedVolumeOsc.setPaintingStrategy(paintingStrategy.HISTOGRAM);
#Conditional Colors Of Bounded Oscillator
DonchianBoundedVolumeOsc.assignValueColor(if boundedosc > 0 then color.LIGHT_GREEN else if boundedosc == 0 then color.GRAY else color.LIGHT_RED);

Here are a couple screenshots of the indicator on a daily chart of SPY:
DBVO.jpg
DBVO2.jpg


Please don't hesitate to share insights or questions about the indicator you might have. As always, happy trading! =-) <3
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
757 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top