Bollinger Band Expansion Candle Color Change

Status
Not open for further replies.

andreast

New member
I'm trying to find with no avail, a custom study that will change the color of Heikin Ashi or Regular candlesticks when the Bollinger Bands are expanding, so i can see the expansion clearly, and take the actual bands off my chart.

I've seen another trader post it from TC2000 and it's awesome. Any help would be appreciated


Here's a picture of the TC2000 BB expansion candle color change

Gzujx4w.png
 
Last edited by a moderator:
Solution
The basic framework would be something like this, although I suspect what your after may be more in depth.

def x = bollingerBandwidth();
assignpricecolor(if x > x[1] then color.green else if x < x[1] then color.red else color.yellow);
Thank you for the reply... Mobius sent me the script on reddit, and it's exactly what I was looking for... should've pulled the question, but in case anyone else is looking for this, here it is:
https://usethinkscript.com/threads/candles-colored-by-bollinger-bandwidth.12024/
The basic framework would be something like this, although I suspect what your after may be more in depth.

def x = bollingerBandwidth();
assignpricecolor(if x > x[1] then color.green else if x < x[1] then color.red else color.yellow);
 
The basic framework would be something like this, although I suspect what your after may be more in depth.

def x = bollingerBandwidth();
assignpricecolor(if x > x[1] then color.green else if x < x[1] then color.red else color.yellow);
Thank you for the reply... Mobius sent me the script on reddit, and it's exactly what I was looking for... should've pulled the question, but in case anyone else is looking for this, here it is:
https://usethinkscript.com/threads/candles-colored-by-bollinger-bandwidth.12024/
 
Last edited by a moderator:
Solution
Status
Not open for further replies.

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
404 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