Pivots (H + L/2) for 2-3pm period SPX

rthubel

New member
Can anyone point to a script that can give me the Pivot (H + L/2) from 2pm -3pm for SPX on a 3 minute chart? If it is easy, can I also add a breakout arrow for that?
 
Solution
Can anyone point to a script that can give me the Pivot (H + L/2) from 2pm -3pm for SPX on a 3 minute chart? If it is easy, can I also add a breakout arrow for that?

please don't repost the same question. if someone can help you they will.
https://usethinkscript.com/threads/pivots-h-l-2-between-2pm-3pm.8986/

you asked for this, (H + L/2)
but did you mean this ? (H + L)/2

maybe this is close to what you want?
it finds a high , during some period of the day.
https://usethinkscript.com/threads/morning-session-range.7646/#post-73691

the start and stop times would need to be changed.

these are the high and low formulas
plot hrange = ProfileHigh;
plot lrange = ProfileLow;

so using them with my version of your...
Can anyone point to a script that can give me the Pivot (H + L/2) from 2pm -3pm for SPX on a 3 minute chart? If it is easy, can I also add a breakout arrow for that?

please don't repost the same question. if someone can help you they will.
https://usethinkscript.com/threads/pivots-h-l-2-between-2pm-3pm.8986/

you asked for this, (H + L/2)
but did you mean this ? (H + L)/2

maybe this is close to what you want?
it finds a high , during some period of the day.
https://usethinkscript.com/threads/morning-session-range.7646/#post-73691

the start and stop times would need to be changed.

these are the high and low formulas
plot hrange = ProfileHigh;
plot lrange = ProfileLow;

so using them with my version of your formula, i came up with this.
add this to the end of that study.

plot hilo2 = if aftermarket then ( ProfileHigh + ProfileLow )/2 else hilo2[1];
 
Solution

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

please don't repost the same question. if someone can help you they will.
https://usethinkscript.com/threads/pivots-h-l-2-between-2pm-3pm.8986/

you asked for this, (H + L/2)
but did you mean this ? (H + L)/2

maybe this is close to what you want?
it finds a high , during some period of the day.
https://usethinkscript.com/threads/morning-session-range.7646/#post-73691

the start and stop times would need to be changed.

these are the high and low formulas
plot hrange = ProfileHigh;
plot lrange = ProfileLow;

so using them with my version of your formula, i came up with this.
add this to the end of that study.

plot hilo2 = if aftermarket then ( ProfileHigh + ProfileLow )/2 else hilo2[1];
Thanks, I will work on this.... oh btw, I did not repost this! I had it in 2 places and they moved it over to the "question page". I did not know all questions needed to start on the "questions" page.
Yes I did mean (H+L)/2. I do have the script you recommend, I just need the average of the high and low of that time frame to print a horizontal line. I tried to add this but not quite sure what I am doing so it did not work...plot hilo2 = if aftermarket then ( ProfileHigh + ProfileLow )/2 else hilo2[1];

Is there a special place to put this in the formula?

Thanks.
 
Last edited:
Thanks, I will work on this.... oh btw, I did not repost this! I had it in 2 places and they moved it over to the "question page". I did not know all questions needed to start on the "questions" page.
Yes I did mean (H+L)/2. I do have the script you recommend, I just need the average of the high and low of that time frame to print a horizontal line. I tried to add this but not quite sure what I am doing so it did not work...plot hilo2 = if aftermarket then ( ProfileHigh + ProfileLow )/2 else hilo2[1];

Is there a special place to put this in the formula?

Thanks.

check the below and see if it solves your issue.

Workspace link : http://tos.mx/Y2DfBKb
 
Thread starter Similar threads Forum Replies Date
Bingy Episodic Pivots Questions 0
R ATR Pivots Questions 0
Ringandpinion Mobius Trend Pivots cloud length Questions 4
Z 2nd & 3rd Order pivots Questions 2
A Pivots with Fibs Questions 4

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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