Repaints Enhanced Trend Reversal Indicator for ThinkorSwim

Repaints
hello - I'm new to the forum.. very excited to learn.. I really like this Trend Reversal stop/loss - is there an scanner for this study? I downloaded the regular trendreversal stop loss NOT the Enhance version... is there a scan for the regular version/original version? thank you in advance for help/advise...also I'm not technical this stuff is all greek to me :cautious:
 
hello - I'm new to the forum.. very excited to learn.. I really like this Trend Reversal stop/loss - is there an scanner for this study? I downloaded the regular trendreversal stop loss NOT the Enhance version... is there a scan for the regular version/original version? thank you in advance for help/advise...also I'm not technical this stuff is all greek to me :cautious:

Since this is a repainting indicator and it doesn't play well with the TOS scan feature, you won't find a proper scanner for it.
 
I'm aware this indicator repaints but still find it usefull. However, I'm perplexed by some of the quirks that repainters have when trying to add something simple and it just will not behaving as expected. I have tried everything I know to have an alarm triggered when certain conditions are met. For example:

# Alarm for bull_vwap and bear_vwap when arrows are plotted
Alert(bull_vwap, "Bullish VWAP Signal Triggered", Alert.BAR, Sound.Ring);
Alert(bear_vwap, "Bearish VWAP Signal Triggered", Alert.BAR, Sound.Ring);

this code will simply not trigger the alarm. I have tried other approches such as :

# Alarm for bull_vwap and bear_vwap
rec bull_vwap_alert = if bull_vwap and !bull_vwap[1] then 1 else 0;
rec bear_vwap_alert = if bear_vwap and !bear_vwap[1] then 1 else 0;

Alert(bull_vwap_alert == 1, "Bullish VWAP Signal Triggered", Alert.BAR, Sound.Ring);
Alert(bear_vwap_alert == 1, "Bearish VWAP Signal Triggered", Alert.BAR, Sound.Ring);


Nothing seems to trigger the alarm? Can someone help? I want to be alerted whenever bull_vwap and bear_vwap plots even if it repaints later
 
I'm aware this indicator repaints but still find it usefull. However, I'm perplexed by some of the quirks that repainters have when trying to add something simple and it just will not behaving as expected. I have tried everything I know to have an alarm triggered when certain conditions are met. For example:

# Alarm for bull_vwap and bear_vwap when arrows are plotted
Alert(bull_vwap, "Bullish VWAP Signal Triggered", Alert.BAR, Sound.Ring);
Alert(bear_vwap, "Bearish VWAP Signal Triggered", Alert.BAR, Sound.Ring);

this code will simply not trigger the alarm. I have tried other approches such as :

# Alarm for bull_vwap and bear_vwap
rec bull_vwap_alert = if bull_vwap and !bull_vwap[1] then 1 else 0;
rec bear_vwap_alert = if bear_vwap and !bear_vwap[1] then 1 else 0;

Alert(bull_vwap_alert == 1, "Bullish VWAP Signal Triggered", Alert.BAR, Sound.Ring);
Alert(bear_vwap_alert == 1, "Bearish VWAP Signal Triggered", Alert.BAR, Sound.Ring);


Nothing seems to trigger the alarm? Can someone help? I want to be alerted whenever bull_vwap and bear_vwap plots even if it repaints later

Correct.
No alerts and scans for this repainter.

You can read through the entire thread for the dozen of others that made many attempts without success.
 

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