Blast Off Indicator for ThinkorSwim

@Stocksdfb The purpose of this indicator is to help you identify indecision candlestick pattern, specifically this one called Blast Off, indicated by Larry Williams. It does not suggest the direction of the stock or where it'll be heading. It would be best if you combined it with other research or technical analysis to make that decision. I hope that makes sense.

Yes it does. So if I think a stock on this list is oversold based on other indicators then it could be good opportunity to short the stock.

One more question, I know its meant to be on the daily chart but if I were to review on the 4HR chart or 10D; 30M chart should I adjust any settings?
 
I'm currently looking at the blastoff indicator scan, is there a certain time where you have to scan? because nothing is showing up on the scan
 
Hello...Newbie here and advanced apologies if this has been asked previously......

In the video, you there were red & green candles and the blast off candle as pink. When copying the code, everything is pink and white. Any way to have it the way it is in the video?

Thanks in advance.
 
@sdotmoore If you use the original version, it should be the same as the video. You must have added the "fancy version"
 
@docsep Here you go:

Code:
# Blast Off Indicator
# Should use on the Daily chart
# Assembled by BenTen at useThinkScript.com
# Converted from https://www.tradingview.com/script/V9Mi6eOO-CM-Blast-Off-V1-Alerts-Ready/

input trig = 20;
input paintbar = yes;

def val = absValue(close - open);
def range = high - low;
def blastOffVal = (val / range) * 100;
def trigger = trig;
def alert1 = blastOffVal < trig;
def col = blastOffVal < trig;

plot value = if col then 1 else 0;
AssignBackgroundColor(if value == 1 then color.magenta else color.gray);
 
Had a lot of success with this indicator , thank you everyone. What is your favorite indicator to use along with this, if any? Also, I understand this is best used after a downtrend - do you like to see a certain number of bearish candles before you enter? On what time frame? Been daytrading with it on the 30 min
 
@spencepuppy I like to use this indicator just to spot potential reversals. The blastoff candle is nothing more than just an indecision candlestick pattern. Quite useful if you know how to use it. It looks like you nailed it.
 
How has everyone been using this? I know it's best used after a downtrend but how do you define a downtrend? Timeframe? Any indicators you guys have had luck using with it? @BenTen
 
@spencepuppy Where did you read that this pattern is "best used after a downtrend"?

This is just merely a candlestick pattern that shows indecision between buyers and sellers. It should be used on the Daily timeframe.
 
@spencepuppy Works for me

MhOcxXB.png
 
Hi Ben, Great Study & Scanner. I would like to ask you when is the best time to run the Blast Off Scanner to find out the stocks? I was thinking right before the closing bell. This way, it will be possible to buy the Stock. Just as a note, I run the La Guerre Scanner to find the stocks that are going up and eliminate some of them through Blast Off Scanner. I pick the ones that give the Pink Bar.
 
@pdincer The purpose of this indicator is to help you build a watchlist of potential movers for the next day. Run the scanner at the end of day and set it to the Daily chart.
 

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