HIGH 11:30 level on all charts at once

Seregey

New member
Hello. Please tell me, is there a formula that draws a level on all charts at once with reference to time? For example, I need to have the HIGH 11:30 level on all charts at once. Please help me make such an indicator.
 
Solution
Hello. Please tell me, is there a formula that draws a level on all charts at once with reference to time? For example, I need to have the HIGH 11:30 level on all charts at once. Please help me make such an indicator.

Below is the code to create an indicator to plot the high from 11:30 for each day on your chart you are viewing.

If you want to apply this indicator to all of the charts on a grid at once, you can use My Tools in chart settings. This is not a simple process.

The code below would have to be added as an indicator in a study set to be used with My Tools . Then with My Tools you can add the study set with whatever studies you have in it. So if it is just the code below that is in the study...
Hello. Please tell me, is there a formula that draws a level on all charts at once with reference to time? For example, I need to have the HIGH 11:30 level on all charts at once. Please help me make such an indicator.

Below is the code to create an indicator to plot the high from 11:30 for each day on your chart you are viewing.

If you want to apply this indicator to all of the charts on a grid at once, you can use My Tools in chart settings. This is not a simple process.

The code below would have to be added as an indicator in a study set to be used with My Tools . Then with My Tools you can add the study set with whatever studies you have in it. So if it is just the code below that is in the study set it will erase whatever is on the screen and replace it with the 11:30 horizontal line indicator.

Otherwise, if you want it to be added to the studiies you are uniformily using currently in all of charts in your grid, then add this indicator below to those studies in one cell in your grid and save them as a study set. Then with My Tools you can add this modified study set to all charts in your grid.

There are videos on how to use My Tools on the internet.

Ruby:
def h = (if secondsfromTime(1130) == 0 then high else h[1]);
plot hh= h;
hh.setpaintingStrategy(paintingStrategy.HORIZONTAL);
 
Solution

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

@SleepyZ Большое тебе спасибо! А как убрать уровень "0" который идет до 11:30? график сужается из-за этого

edited by mod: translation
Thank you very much! And how to remove the level "0" which goes before 11:30? the schedule is shrinking because of this
 
Last edited by a moderator:
@SleepyZ Большое тебе спасибо! А как убрать уровень "0" который идет до 11:30? график сужается из-за этого

edited by mod: translation

I am not sure what the translation "schedule" references. If it is the screen then go to chart settings, price axis and uncheck all "Fit" items.

Another possibility would be to display just the last High at 11:30 as follows:

Ruby:
def h = if getday()  == getlastday() and SecondsFromTime(1130) == 0 then high else h[1];
plot hh = highestall(h);
hh.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
 
Last edited:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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