Performance vs. SPX Since Earnings

flyer01

New member
Is it possible to create a scan that return stocks that have outperformed SPX x% since the stock's last earnings date. Here's how I would envision it working:
  1. Determine the number of bars ago since the last earnings date using a function like HasEarnings(). I'm not sure how that number would be stored.
  2. Determine the % change between the close on the current bar and the bar identified in #1.
  3. Determine the % change of the SPX over the same period as #2.
  4. Determine the variance between the stock's performance vs. the SPX performance over that period.
I'd appreciate it if someone could help provide a starter script, especially for #1 and #3 above. Thank you!
 
Solution
Pg5EDsy.png
Code:
input Sym = "SPX";
input OutPerf = 3;

def Earn =
    hasearnings();
def eP =
    if Earn then Close
    else eP[1];
def iP =
    if Earn then Close(SYM)
    else iP[1];
plot eC =
    (Close - eP) / eP * 100;
plot iC =
    (Close(SYM) - iP) / iP * 100;
plot Diff =
    eC - iC;
plot Scan =
    Diff >= OutPerf;
diff.assignValueColor(
    if Diff >= OutPerf then color.green
    else color.red);
#######
plot z = OutPerf;
addverticalLine(Earn or Earn[1]);
addlabel(yes," " + getsymbol() + " " ,eC.takeValueColor());
addlabel(yes," " + Sym + " ",iC.takeValueColor());
addlabel(yes," Diff ",Scan.takeValueColor());
declare lower;

This should contain everything you need to get started...
Code:
input Sym = "SPX";
input OutPerf = 3;

def Earn =
    hasearnings();
def eP =
    if Earn then Close
    else eP[1];
def iP =
    if Earn then Close(SYM)
    else iP[1];
plot eC =
    (Close - eP) / eP * 100;
plot iC =
    (Close(SYM) - iP) / iP * 100;
plot Diff =
    eC - iC;
plot Scan =
    Diff >= OutPerf;
diff.assignValueColor(
    if Diff >= OutPerf then color.green
    else color.red);
#######
plot z = OutPerf;
addverticalLine(Earn or Earn[1]);
addlabel(yes," " + getsymbol() + " " ,eC.takeValueColor());
addlabel(yes," " + Sym + " ",iC.takeValueColor());
addlabel(yes," Diff ",Scan.takeValueColor());
declare lower;

This should contain everything you need to get started. To make it a scan, you only need to ensure that you're scanning based on the plot named "scan." Or for simplicity, change out all of the other plots to Def, and the stuff at the bottom can be deleted.
 
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
476 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