% move in X days (scan and indicator)

nitrotrader

New member
Hello, I am looking to backtest different setups, and in order to so I'm trying to figure out how to create a Scan and an Indicator that identifies the following:

SCAN: All stocks that increased X% over a 5 day period sometime in the past year (252 days)

Once I have those stocks, I'd like to be able to show when that period occurred using a visual indictor (either an indicator, or a paintbar visual)

Thanks in advance if you're able to provide help.
 
Solution
Hello, I am looking to backtest different setups, and in order to so I'm trying to figure out how to create a Scan and an Indicator that identifies the following:

SCAN: All stocks that increased X% over a 5 day period sometime in the past year (252 days)

Once I have those stocks, I'd like to be able to show when that period occurred using a visual indictor (either an indicator, or a paintbar visual)

Thanks in advance if you're able to provide help.

this is a lower study, to show the trigger signals.
disable the z plot , to use this in a scan. ( put # in front of the 2 lines)

for testing, look at MRK day 2yr chart

Code:
# incres_xper_5days_year_00

# run this on a daily chart

# find stock
# increased x% , over x days
#...
Hello, I am looking to backtest different setups, and in order to so I'm trying to figure out how to create a Scan and an Indicator that identifies the following:

SCAN: All stocks that increased X% over a 5 day period sometime in the past year (252 days)

Once I have those stocks, I'd like to be able to show when that period occurred using a visual indictor (either an indicator, or a paintbar visual)

Thanks in advance if you're able to provide help.

this is a lower study, to show the trigger signals.
disable the z plot , to use this in a scan. ( put # in front of the 2 lines)

for testing, look at MRK day 2yr chart

Code:
# incres_xper_5days_year_00

# run this on a daily chart

# find stock
# increased x% , over x days
# sometime in the past year ,  days/yr = 252
declare lower;

input per_incr = 5.0;
input days_duration = 5;
input days_back = 252;

# % chg in close , over x days
def perchg = round((100*( close - close[days_duration] ) / close ),1);
# compare the % chg to per_incr
def isperchg = if perchg > per_incr then 1 else 0;

# look back 252 days to see if any % increases exist
plot s = if sum(isperchg, days_back) > 0 then 1 else 0;
s.setdefaultcolor(color.yellow);


# each % trigger
plot z = isperchg;
z.setdefaultcolor(color.cyan);

#
 
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
264 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