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.
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);