Repaints Trend Reversal for ThinkorSwim

Repaints
Status
Not open for further replies.

New Indicator: Buy the Dip

Check out our Buy the Dip indicator and see how it can help you find profitable swing trading ideas. Scanner, watchlist columns, and add-ons are included.

Download the indicator

@tenacity11 Is their anyway to make the trend arrow line up with the cyan and magenta bars instead of the following bar? Or can those bars repaint too?Thanks!
Jerald the arrow lines up with the parameters of the indicator. The cyan and magenta bars are based on swing highs and lows where the trend reversal is based differently. The trend reversal is a confirmation for me for the possibility of the reversal. I hope that makes sense.
 
Jerald the arrow lines up with the parameters of the indicator. The cyan and magenta bars are based on swing highs and lows where the trend reversal is based differently. The trend reversal is a confirmation for me for the possibility of the reversal. I hope that makes sense.
First off, thank you for responding .
Yes , it makes perfect sense looking back at it . Will the color bars repaint like the arrows , giving a false trigger?
 
I gave this indicator another shot. Even with additional Indicators for confirmation it repaints like crazy. I'm taking about 5-10 bars later on even 15 minute charts. On the 1/3 minute charts don't even think about it . Not worth much in it's current state , I'm sorry to report. Be careful people. Have stops pre set.
 
@BenTen this is a great indicator. Very accurate for me. And wondering if a small aesthetic tweak can be made? I'm constantly looking left on the daily chart, comparing current price with the day's history to make buy/sell decisions. This indicator produces a lot of buy/sell bubbles on the chart because I trade 1min charts. I wrote the following code to hide the bubbles older than 60 minutes on a 1 min chart, however, I'm wondering if there is a way to code it to show only the latest, most current 4 alerts (e.g. 2 buys, 2 sells)?
## 1 min chart
def barsback = 60;
def currentbar = barnumber();
def dif = currentbar-barsback;
def show =if barnumber() == HighestAll(dif) then 1 else show[1];
AddChartBubble((barnumber and U1 and show), if isUp then low else high, if showarrows and signal > 0 and signal[1] <= 0 then "B" else "" , if Colorbars == 3 then Color.Gray else Color.UPTICK, no);
AddChartBubble((barnumber and D1 and show ), if isUp then low else high, if showarrows and signal < 0 and signal[1] >= 0 then "S" else "" , if Colorbars == 3 then color.gray else Color.DOWNTICK, yes);

Thank you for your help!
 
@David45 The repainting in this indicator is different. It doesn't lag; the signals will simply disappear if it is wrong. Take a look at the screenshot from the original post. Look for the stoploss line. If that line is broken, the signal will disappear.
 
@David45 The repainting in this indicator is different. It doesn't lag; the signals will simply disappear if it is wrong. Take a look at the screenshot from the original post. Look for the stoploss line. If that line is broken, the signal will disappear.
Thank you BenTen, do you have a version that includes the stop loss lines?
 
@David45 Take a look at the original post.

I used the share link and copied the thinkScript manually but neither is plotting the stop loss lines. Only the bubbles. Not sure what I'm missing?

Also, I see there are a few versions of this. Can you post a link to the latest version? Thanks BenTen!
 
@David45 I just tried the code from post #1, I'm able to see the stoploss line.

xCRqG1N.png
 
I realized the problem. It has to be used on SPY, not SPX or QQQ not NDX in order to see the stop loss lines. Is this the latest version of the indicator BenTen?

@tomsk is it possible to add the stop loss lines as they are shown in post #1 to this study? Thanks in advance!
 
Last edited by a moderator:
@BenTen is it possible to make some minor tweaks to this?
  • Instead of the bubbles saying Reversal, they would say Long and Short.
  • Instead of a stop loss line, a stop loss bubble that would say Stop and the stop price would also be in the bubble.
Thanks in advance for any assistance BenTen!
 
Status
Not open for further replies.

Volatility Trading Range

VTR is a momentum indicator that shows if a stock is overbought or oversold based on its Weekly and Monthly average volatility trading range.

Download the indicator

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
268 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