Quick Hits Strategy

Zlotko

Active member
Could we have on 1min ( and 5min ) chart the MTF (1min,2min,3min,4min,5min,10min) Squeeze PRO as lines on the lower?
And on upper MTF 5EMA from Daily, 8EMA from15min, 21EMA from 30min, 50EMA min from 60min
Like On this presentation.?
 
Could we have on 1min ( and 5min ) chart the MTF (1min,2min,3min,4min,5min,10min) Squeeze PRO as lines on the lower?
And on upper MTF 5EMA from Daily, 8EMA from15min, 21EMA from 30min, 50EMA min from 60min
Like On this presentation.?
always the next best thing from these guys
 

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Could we have on 1min ( and 5min ) chart the MTF (1min,2min,3min,4min,5min,10min) Squeeze PRO as lines on the lower?
And on upper MTF 5EMA from Daily, 8EMA from15min, 21EMA from 30min, 50EMA min from 60min
Like On this presentation.?

here is the upper study, MTF averages

Code:
# mtf_avgs_0

# https://usethinkscript.com/threads/quick-hits-strategy.12785/
# https://www.youtube.com/watch?v=1dKUw0wIeAA&t=1s
# Discover How John Carter Scaled Up His Son’s Daily Income Strategy to Make $300k+ /Day
# simpler trading

#  5EMA from Daily,
#  8EMA from 15min,
# 21EMA from 30min,
# 50EMA from 60min,

def price = close;

input agg1 = AggregationPeriod.day;
input type1 = AverageType.EXPONENTIAL;
input len1 = 5;
def close1 = close(period = agg1);
def ma1 = MovingAverage(type1, close1, len1);

input agg2 = AggregationPeriod.fifteen_min;
input type2 = AverageType.EXPONENTIAL;
input len2 = 8;
def close2 = close(period = agg2);
def ma2 = MovingAverage(type2, close2, len2);

input agg3 = AggregationPeriod.thirty_min;
input type3 = AverageType.EXPONENTIAL;
input len3 = 21;
def close3 = close(period = agg3);
def ma3 = MovingAverage(type3, close3, len3);

input agg4 = AggregationPeriod.hour;
input type4 = AverageType.EXPONENTIAL;
input len4 = 50;
def close4 = close(period = agg4);
def ma4 = MovingAverage(type4, close4, len4);


plot z1 = ma1;
z1.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z1.setdefaultcolor(getcolor(1));
z1.hidebubble();

plot z2 = ma2;
z2.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z2.setdefaultcolor(getcolor(2));
z2.hidebubble();

plot z3 = ma3;
z3.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z3.setdefaultcolor(getcolor(3));
z3.hidebubble();

plot z4 = ma4;
z4.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z4.setdefaultcolor(getcolor(4));
z4.hidebubble();
#

0KQmhmv.jpg
 
here is the upper study, MTF averages

Code:
# mtf_avgs_0

# https://usethinkscript.com/threads/quick-hits-strategy.12785/
# https://www.youtube.com/watch?v=1dKUw0wIeAA&t=1s
# Discover How John Carter Scaled Up His Son’s Daily Income Strategy to Make $300k+ /Day
# simpler trading

#  5EMA from Daily,
#  8EMA from 15min,
# 21EMA from 30min,
# 50EMA from 60min,

def price = close;

input agg1 = AggregationPeriod.day;
input type1 = AverageType.EXPONENTIAL;
input len1 = 5;
def close1 = close(period = agg1);
def ma1 = MovingAverage(type1, close1, len1);

input agg2 = AggregationPeriod.fifteen_min;
input type2 = AverageType.EXPONENTIAL;
input len2 = 8;
def close2 = close(period = agg2);
def ma2 = MovingAverage(type2, close2, len2);

input agg3 = AggregationPeriod.thirty_min;
input type3 = AverageType.EXPONENTIAL;
input len3 = 21;
def close3 = close(period = agg3);
def ma3 = MovingAverage(type3, close3, len3);

input agg4 = AggregationPeriod.hour;
input type4 = AverageType.EXPONENTIAL;
input len4 = 50;
def close4 = close(period = agg4);
def ma4 = MovingAverage(type4, close4, len4);


plot z1 = ma1;
z1.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z1.setdefaultcolor(getcolor(1));
z1.hidebubble();

plot z2 = ma2;
z2.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z2.setdefaultcolor(getcolor(2));
z2.hidebubble();

plot z3 = ma3;
z3.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z3.setdefaultcolor(getcolor(3));
z3.hidebubble();

plot z4 = ma4;
z4.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
z4.setdefaultcolor(getcolor(4));
z4.hidebubble();
#

0KQmhmv.jpg
Thank you.
 
Could we have on 1min ( and 5min ) chart the MTF (1min,2min,3min,4min,5min,10min) Squeeze PRO as lines on the lower?
And on upper MTF 5EMA from Daily, 8EMA from15min, 21EMA from 30min, 50EMA min from 60min
Like On this presentation.?

post some more info and maybe someone will tackle the other part of your question.

if someone wants a study modified, they should post the code and a link to the original code.
don't expect others to know what it is and where to find it, or to go searching for it.
 
@halcyonguy thanks for the code. I tried it but it does not plot. The bar above the chart shows in green that the study is applied but it does not plot on the chart. Is there someting that I overlooked? It is a daily chart. is that right?
I'm also new here, and I also need help with posting an image as it seems to want an HTTP? I don't know what HTTP and I woud appreciate help with the steps please?
 
@halcyonguy thanks for the code. I tried it but it does not plot. The bar above the chart shows in green that the study is applied but it does not plot on the chart. Is there someting that I overlooked? It is a daily chart. is that right?
I'm also new here, and I also need help with posting an image as it seems to want an HTTP? I don't know what HTTP and I woud appreciate help with the steps please?

that study uses 2nd aggregation.
if a study doesn't plot , try a lower time frame on the chart.
the smallest time used in the study is 15 minutes, so that is the max time.
try a chart time , 1 minute to 15 mimutes.

# 5EMA from Daily,
# 8EMA from 15min,
# 21EMA from 30min,
# 50EMA from 60min,
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
192 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