How to get hourly grid showing on left chart

dxk

Member
I have a 1min chart up in right image below I can see every hour
If you look at image to the left that chart is an hourly chart it only shows the days

I would like to know when those volumes occur without moving the cross hairs over them
Is this possible?

If I zoom up close the times show, but not when zoomed out, can maybe a study and labels be made?



SNvywhG.jpg
 
Last edited:
@dxk You're not making it easy to help you by just showing an image without any supporting code... The simple answer is, yes, you can paint Chart Labels on each chart displaying the current values... Use AddLabel()...
 
@dxk You're not making it easy to help you by just showing an image without any supporting code... The simple answer is, yes, you can paint Chart Labels on each chart displaying the current values... Use AddLabel()...
Ok, I thought the time labels would be independent to the volume code but a chart default.
No problem I've included the code for the volume bars. Thanks for helping.

Code:
#Doji

input length = 20;
input bodyFactor = 0.05;

assert(bodyFactor >= 0, "'body factor' must not be negative: " + bodyFactor);

plot Doji = IsDoji(length, bodyFactor) and RelativeVolumeStDev(50).RelVol >= 2;

Doji.SetPaintingStrategy(PaintingStrategy.BOOLEAN_POINTS);
Doji.SetDefaultColor(CreateColor(153, 153, 255));
Doji.SetLineWeight(3);



#RelVol
declare lower;
declare zerobase;

input length2 = 60;
input numDev = 2.0;
input numDev2 = 2.0;
input allowNegativeValues = no;

def rawRelVol = (volume - Average(volume, length)) / StDev(volume, length);
plot RelVol = if allowNegativeValues then rawRelVol else Max(0, rawRelVol);
plot StDevLevel = numDev;
plot StDevLevel2 = numDev2;



RelVol.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
RelVol.SetLineWeight(3);
RelVol.DefineColor("Above", GetColor(0));
RelVol.DefineColor("Below", GetColor(2));
RelVol.DefineColor("Doji", GetColor(3));
RelVol.AssignValueColor(if RelVol >= numDev and IsDoji(length, bodyFactor) then RelVol.Color("Doji") else if RelVol >= numDev then RelVol.Color("Above") else RelVol.Color("Below"));

StDevLevel.SetDefaultColor(GetColor(7));
StDevLevel.SetStyle(Curve.SHORT_DASH);
StDevLevel2.SetDefaultColor(GetColor(7));
StDevLevel2.SetStyle(Curve.SHORT_DASH);
 

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