If anyone is willing to help out. I need simple code that will display, current volume*current VWAP.
I copy pasted it something together.
I think it's working.
Can someone have a look at this.
I copy pasted it something together.
I think it's working.
Can someone have a look at this.
Code:
def V = volume(GetSymbol(), AggregationPeriod.DAY);
def VP = vwap(getSymbol(), AggregationPeriod.DAY);
def money = V*VP;
AddLabel (yes, ("Money: ")+ Round(money * .000001, 1) + "M", Color.CYAN);
Last edited by a moderator: