Unique pivot alert - triple cross

greco26

Active member
Greetings!

I've searched for the past few hours but haven't been able to find anything that will address my needs. Im taking a traditional pivot study and want to add a triple cross alert to it if the condition is true. Price breaks daily pivot high (first cross). In the coming days, price retests the prior pivot high (second cross or 'near cross'). Price then reverses up (third cross) over the initial pivot high and the alert tiggers.

The issue I have is the second and third cross. Depending on the lookback period and other factors, the initial pivot high may no longer exist in the study therefore the second and/or third cross will never trigger. Additionally, when a new pivot high is created, the old pivot may become the new pivot low. To me, it seems I need to timestamp the first cross and use that as the reference for the 2nd and 3rd cross but then again, it may have become irrelevant if there are new pivots formed. I know I can figure out manual work arounds for all of this but I'm keep to see if anyone has any thoughts on this. Perhaps I missed a study that has this type of alert already built in? Also, let me know if you think I may be looking at this wrong.

PS- I tend to overcomplicate things. If there's an easier way to accomplish this, let me know too!

Thanks, Tim
 
Last edited:
I'm simplifying my plan. I put together some code for a study which I will attach to a study-based alert on a chart. I'm not sure that the below code will work though. I want the condition to be met only when price crosses below $25 and then crosses back above $25 but both events must happen within 30 days. Hopefully someone can give me some hints. Thanks!!

input price = 25;
input begindate = 20210530;
def timeframe = DaysFromDate(BeginDate) >= 0 and DaysFromDate(BeginDate) <= 30;
def crossbelow = low crosses below price and timeframe;
def crossabove = close crosses above price and timeframe;
plot doublecross = crossbelow and crossabove;
 

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