♥ 0 |
Hello Pete! Hope you are doing well! How do I take the VWAP indicator and create a chart label on the top left that says VWAP: “#”. I have provided a snippet for your reference. Thank you so much for your help!
Marked as spam
|
I'll show you how to change that to the upper band of VWAP study and that will show you how to also create one for the lower band:
def vwapValue = reference VWAP()."UpperBand"; AddLabel(yes, Concat("VWAP Upper: ", vwapValue), Color.WHITE);
Hint: All you need to do is change which of the three plots are being "referenced".