In Marketwatch, is there away to not be alerted again for X number of days/ hours

tinfox

Member
I have a scan that I use that works the first time it occurs, but I don't want to get a notification about it again until a reset period, like a day or two or a week .. whaterver
 
Solution
You could probably code it directly into the scan itself. This is just a random scan I wrote for a question in another thread. In this version, the scan will only trigger if there have been at least seven days between now at the last time it would have triggered. Up Arrows are the raw underlying condition that would typically trigger the scan, Down Arrows are when the scan actually gets triggered relative to the rest period. The numbers above the candles shows the number of days. This is designed for a chart just to help visualize what is occurring.

Input IgnoreFor = 7;

plot ScanCondition = High - Max(Open,Close) > BodyHeight() and High - Max(Open,Close) > Min(Open,Close) - Low...
I have a scan that I use that works the first time it occurs, but I don't want to get a notification about it again until a reset period, like a day or two or a week .. whaterver
No.
The ToS platform does not provide the ability to modify the widgets.
 
You could probably code it directly into the scan itself. This is just a random scan I wrote for a question in another thread. In this version, the scan will only trigger if there have been at least seven days between now at the last time it would have triggered. Up Arrows are the raw underlying condition that would typically trigger the scan, Down Arrows are when the scan actually gets triggered relative to the rest period. The numbers above the candles shows the number of days. This is designed for a chart just to help visualize what is occurring.

Input IgnoreFor = 7;

plot ScanCondition = High - Max(Open,Close) > BodyHeight() and High - Max(Open,Close) > Min(Open,Close) - Low;
ScanCondition.setpaintingStrategy(paintingStrategy.BOOLEAN_ARROW_UP);

def Days = if ScanCondition and Days[1] >= IgnoreFor then 0 else if GetDay() != GetDay()[1] then Days[1] + 1 else Days[1];
plot Count = Days;
Count.setPaintingStrategy(paintingStrategy.VALUES_ABOVE);

plot Scan = ScanCondition and Days[1] >= IgnoreFor;
Scan.setpaintingStrategy(paintingStrategy.BOOLEAN_ARROW_DOWN);

Although, one thing you would have to contend with is that dynamic watch lists, as well as alerts based on their results changing, sometimes do weird things around midnight, or when TOS is doing maintenance.
 
Last edited:
Solution

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