Repaints Trend Reversal for ThinkorSwim

Repaints
Status
Not open for further replies.
Really wish there was a mobile version. I mainly trade on my phone as I work full-time. Love this indicator.

 
Last edited:

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

@BenTen



Hi,

I was wondering if I am able to add sound signals when a reversal signal is made?

Thanks,

😀

 
Last edited:
@Azzy19 Add this to the end of the script.

Rich (BB code):
#Alerts
def bullish2 = signal > 0 and signal[1] <= 0;
plot upArrow = bullish2;
upArrow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
upArrow.SetDefaultColor(CreateColor(145, 210, 144));
def bearish2 = signal < 0 and signal[1] >= 0;
plot downArrow = bearish2;
downArrow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
downArrow.SetDefaultColor(CreateColor(255, 15, 10));
Alert(downArrow, " ", Alert.Bar, Sound.Chimes);
Alert(upArrow, " ", Alert.Bar, Sound.Bell);
 
Last edited:
@Joreha For Mobile: Use a text editor like Notepad++ or other .txt file creator and copy - paste the script at the top of the page. The # symbol is used at the front of each line to "comment out" those lines that won't work. Do same in Thinkscript editor if you would rather. Comment out everything but the bare necessities. Save that as your "StudyName_Mobile" file. The rest is trial and error from my vantage point. Load it on your mobile phone and the settings that should work aught to be on the mobile study set up page. Feel free to call the super secret phone number for help if you get stuck. Most of those people are on top of things.

Concerning the RSI Laguerre w FE study https://tos.mx/gFDE1f ; it works good on my android...your results may vary!

A number of thinkScript features are known to have issues on the mobile apps

1. Different time aggregations

2. Bubbles

3. Labels

4. Plots between days

5. Extension area

 
Last edited by a moderator:
@ukwildcat1998



i am new here. using the trendreversalscanner. but its not resulting any stocks in my watchlist(around 50 stocks).

any thoughts?

Thanks

ileqhex.png


 

Attachments

  • ileqhex.png
    ileqhex.png
    65.5 KB · Views: 116
Last edited:
@BenTen You said, "Unfortunately not possible to keep the repaints." But it does keep some prior signals. What am I missing? You said in the opening post that you got it from the futures forum, would you please share the link? Thank you.

 
Last edited:
@john3 This indicator is quite complicated as to how it generates signals and removing them. I have yet to fully comprehend it. The link is already in the thread above under credit.

 
Last edited:
@BenTen Yes, the code is a little convoluted...trying/interested in understanding it...I see the fibs and volume in the code. Is it using all that stuff? It seems it doesn't. What do you think?

 
Last edited:
@john3 I don't think so. Maybe it's not completed? @markos thoughts on this?

 
Last edited:
@BenTen Not sure about all of the signals it generates, but it seems that most signals are identical to the Mobius' RTH reversal indicator that you've posted.



P.S. If I have some indicators that I would like to share, do I just post them myself or do I send you the code via Discord?

 
Last edited:
@john3 Well, glad you notice that because they both use the same concept which is finding potential high and low of the stock. Hence why some signals disappear and there is a stop loss line on this indicator.



Feel free to post them yourself or send them to me. Whichever works for ya. Be sure to write a short description of the indicator and add a screenshot of it, if possible.

 
Last edited:
@BenTen

Hi I was wondering if anyone has been able to sound alerts when a reversal signal appears... I am struggling to get it to work...

Any ideas would be appreciated!

Thanks!!! &#128512;

 
Last edited:
@Azzy19 Here is the scanner, add it to the bottom of the script. It's actually already in the indicator but was commented out.

Rich (BB code):
#Alerts 
def usealerts = yes; 
Alert(usealerts and U1, "EI-UP", Alert.BAR, Sound.Bell); 
Alert(usealerts and D1, "EI-DOWN", Alert.BAR, Sound.Chimes);
Alert(condition = sellsignal[1] == 0 and sellsignal == 1, text = "Sell Signal", sound = Sound.Bell, "alert type" = Alert.BAR);
Alert(condition = sellsignal[1] == 1 and sellSignal == 0, text = "Momentum_Up", sound = Sound.Bell, "alert type" = Alert.BAR);
Alert(condition = buysignal[1] == 0 and buysignal == 1, text = "Buy Signal", sound = Sound.Bell, "alert type" = Alert.BAR);
Alert(condition = buysignal[1] == 1 and buysignal == 0, text = "Momentum_Down", sound = Sound.Bell, "alert type" = Alert.BAR);
 
Last edited:
First off, this is awesome. Thank you for putting in the work on this, sharing it, answering questions, etc. Very much appreciated. It looks like on some of the posts on stocktwits today the word "reversal" has been taken out of the bubble so that just the price shows. I'd like to make that change as well, but I warn you, I have essentially zero coding experience haha. BUT I can follow directions haha. Any chance you could tell me how to make that change? Thank you. And again, thank you for all of this.

 
Last edited:
@True Thank you for the kind words.

In your indicator, look for the following lines:

Rich (BB code):
AddChartBubble((barnumber and U1), if isUp then low else high, if showarrows and signal > 0 and signal[1] <= 0 then "Reversal:" + low else "" , if Colorbars == 3 then Color.PLUM else Color.UPTICK, no);
AddChartBubble((barnumber and D1), if isUp then low else high, if showarrows and signal < 0 and signal[1] >= 0 then "Reversal:" + high else "" , if Colorbars == 3 then Color.PLUM else Color.DOWNTICK, yes);

Remove the word _Reversal:_ but leave the quotation mark &#128512;



If you're still unsure or don't want to mess things up, here is the updated indicator for ya: https://tos.mx/AmflW3

 
Last edited:
@BenTen So I cheated and used the link that you provided haha. I have a quick question. Did this updated link add in the Alerts that was mentioned a few posts above? When I added it to my chart an alert bell or whatever dinged. Or was that just coincidence and/or because it was added to the chart? Thanks again.

 
Last edited:
@BenTen This indicator is awesome, really appreciate what you are doing here. I have a quick question, does this indicator work in mobile app? I feel like missing all these opportunities.

 
Last edited:
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
285 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