Send Alert from Watchlist when Custom Study is Triggered?

Hey!

Quick question, I'm using a paper trade account for now. I have created my own watchlist with a custom column that includes just a basic, custom made study(?) that displays either a 1 or a 0 when it meets some technical indicators criteria. What I'm wondering is, is it possible to receive a one time alert whenever a stock in this column "plots" a 1?

The code for this column looks like this:
Code:
plot Woohoo = If(AccelerationDecelerationOsc() > 0 and
    
    AccelerationDecelerationOsc() > AccelerationDecelerationOsc() from 1
                                                            bar ago and
     AccelerationDecelerationOsc() > 0 and


    RateOfChange() > Min(RateOfChange() from 1 bar ago, RateOfChange() from 2 bar ago) and
    

    VolumeRateOfChange() > VolumeRateOfChange() from 1 bar ago and
    VolumeRateOfChange() > 0 and


    ((ATR() > ATR() from 1 bar ago) or (ATR() < Max(ATR() from 1 bar ago, ATR() from 5 bar ago))) and
    

    close > vwap() and
    

    close > Average(close, 9),


"true value" = 1, "false value" = 0);

Woohoo.AssignValueColor(if Woohoo == 1 then Color.GREEN else Color.RED);

def condition = if Woohoo == 1 then 1 else 0;
Alert(condition, GetSymbol(), Alert.ONCE);

As you see, if the stock meets some criteria, display a green 1 in the watchlist, or a red 0 if not, which currently works fine. Then, I added what I think is the default alert code beneath it, but I didn't receive any alerts when I added this in. What I did not try, was leaving the desktop software open all day to monitor and then receive the push notifications on my phone's ToS app, but maybe I need to?

Hoping someone can tell me if this is even possible or not, or what else I could try? Thanks!
 
You may have to convert this into a scanner, save the scanner as a watchlist, and then get alerted for new changes there.
 

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