high & low of 1st 4hr bar using 30min TF

shakib3585

Active member
VIP
Hello,

I'm striving to pinpoint the high and low levels of the first four-hour trading bar, encompassing the pre-market period, utilizing 30-minute aggregated data. I have attached a code, but it is not able to hold the data constant throughout the trading period by using 30 minute data. My aim is to establish constant high and low values based on the first four-hour bar, which can then be monitored through 30-minute interval aggregation. Please correct.

Thanks
Code:
def firstBarNumber = if GetDay() <> GetDay()[1] then BarNumber() else firstBarNumber[1];

def high1 = if BarNumber() == firstBarNumber then high(period=aggregationPeriod.THIRTY_MIN) else high1[1];

def low1 = if BarNumber() == firstBarNumber then low(period=aggregationPeriod.THIRTY_MIN) else low1[1];

def high2 = if BarNumber() == firstBarNumber+7 then high(period=aggregationPeriod.THIRTY_MIN) else high2[1];

def low2 = if BarNumber() == firstBarNumber+7 then low(period=aggregationPeriod.THIRTY_MIN) else low2[1];

def hi = if high1>=high2 then high1 else high2;

def lo = if low1<=low2 then low1 else low2;

plot IBH = hi ;

plot IBL = lo;
 
Hello,

I'm striving to pinpoint the high and low levels of the first four-hour trading bar, encompassing the pre-market period, utilizing 30-minute aggregated data. I have attached a code, but it is not able to hold the data constant throughout the trading period by using 30 minute data. My aim is to establish constant high and low values based on the first four-hour bar, which can then be monitored through 30-minute interval aggregation. Please correct.

Thanks
Code:
def firstBarNumber = if GetDay() <> GetDay()[1] then BarNumber() else firstBarNumber[1];

def high1 = if BarNumber() == firstBarNumber then high(period=aggregationPeriod.THIRTY_MIN) else high1[1];

def low1 = if BarNumber() == firstBarNumber then low(period=aggregationPeriod.THIRTY_MIN) else low1[1];

def high2 = if BarNumber() == firstBarNumber+7 then high(period=aggregationPeriod.THIRTY_MIN) else high2[1];

def low2 = if BarNumber() == firstBarNumber+7 then low(period=aggregationPeriod.THIRTY_MIN) else low2[1];

def hi = if high1>=high2 then high1 else high2;

def lo = if low1<=low2 then low1 else low2;

plot IBH = hi ;

plot IBL = lo;

your wording is confusing.
in 4 hours, there will be 8 - 30 minute time periods.
do you want to plot 2 lines,
at the high and low,
of 8 different 30 minute time periods, starting at 4am?

what chart time are you using?
what are some symbols you are looking at?

Many stocks will have very little trading in premarket. So we'll have missing bars and not much data to plot.
 
your wording is confusing.
in 4 hours, there will be 8 - 30 minute time periods.
do you want to plot 2 lines,
at the high and low,
of 8 different 30 minute time periods, starting at 4am?

what chart time are you using?
what are some symbols you are looking at?

Many stocks will have very little trading in premarket. So we'll have missing bars and not much data to plot.


What I would like is to be able to plot the very first 4 hour bar high and low value using 30 minute aggregation data. The first 4 hour should encompass the premarket if there were premarket action. If not, the it will extract from RTH
 

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