TOS VolumeProfile plot at a specific time.

Learnbot

Active member
Hello, I have the following code that I adopted from TOS's VolumeProfile. I was wondering if there is a way to plot POC, VAhigh and VAlow lines for values from 15-minute aggregation and specific time such as 0915am-0930am?

I have tried adopting ORB code to see if I can make this work with ORB logic but failed, so was wondering if anyone else has any ideas/suggestions or is even possible.


Code:
input valueAreaPercent = 70;
input onExpansion = yes;
input opacity = 50;
input profiles = 1000;



def period = barNumber() - 1;
def count = CompoundValue(1, if period != period[1] then count[1] + 1 else count[1], 0);
def cond = count < count[1] + period - period[1];

profile vol = volumeProfile("startNewProfile" = cond, "onExpansion" = onExpansion, "numberOfProfiles" = profiles, "value area percent" = valueAreaPercent);

def pc = vol.getPointOfControl();
def hVA = vol.getHighestValueArea();
def lVA = vol.getLowestValueArea();

def plotsDomain = IsNaN(close) and onExpansion;

plot POC = if plotsDomain then HighestAll(pc) else Double.NaN;
plot VAHigh = if plotsDomain then HighestAll(hVA) else Double.NaN;
plot VALow = if plotsDomain then HighestAll(lVA) else Double.NaN;

DefineGlobalColor("Point Of Control", GetColor(5));
DefineGlobalColor("Value Area", GetColor(8));

POC.SetDefaultColor(globalColor("Point Of Control"));
POC.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
POC.SetLineWeight(2);
POC.SetStyle(Curve.SHORT_DASH);

VAHigh.SetDefaultColor(globalColor("Value Area"));
VAHigh.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
VAHigh.SetLineWeight(2);

VALow.SetDefaultColor(globalColor("Value Area"));
VALow.SetPaintingStrategy(PaintingStrategy.HORIZONTAL);
VALow.SetLineWeight(2);
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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