#Error message tells me that I have provided 3 positional arguments where only two are needed. Help me show the label that encompasses the Power function without error
def xvolume4 = (volume(period = "4 hour")[1]);
def vvol4 = (volume(period = "4 hour"));
plot rvolx4 = Round((vvol4 / xvolume4), 1);
def rvolxapi4 = rvolx4;
def xvolume = (volume(period = "30 min")[1]);
def vvol = (volume(period = "30 min"));
plot rvolx = Round((vvol / xvolume), 1);
def rvolxapi = rvolx;
plot Power = (rvolxapi4 / rvolxapi);
AddLabel(yes, Concat("Fold: ", Power, Color.LIGHT_ORANGE));
def xvolume4 = (volume(period = "4 hour")[1]);
def vvol4 = (volume(period = "4 hour"));
plot rvolx4 = Round((vvol4 / xvolume4), 1);
def rvolxapi4 = rvolx4;
def xvolume = (volume(period = "30 min")[1]);
def vvol = (volume(period = "30 min"));
plot rvolx = Round((vvol / xvolume), 1);
def rvolxapi = rvolx;
plot Power = (rvolxapi4 / rvolxapi);
AddLabel(yes, Concat("Fold: ", Power, Color.LIGHT_ORANGE));