# Volume Label - 5 min / 30 min
# tomsk
# 11.17.2019
input Start1 = 0930;
input End1 = 0935;
input End2 = 1000;
def Active5M = SecondsFromTime(Start1) >= 0 and SecondsTillTime(End1)-1 >= 0;
def Active30M = SecondsFromTime(Start1) >= 0 and SecondsTillTime(End2)-1 >= 0;
def Today = GetDay() == GetLastDay();
def v5M = if Today and Active5M then v5M[1] + volume else v5M[1];
def v30M = if Today and Active30M then v30M[1] + volume else v30M[1];
AddLabel(yes, "Volume (" + AsPrice(Start1) + " - " + AsPrice(End1) + ") = " + v5M, Color.Yellow);
AddLabel(yes, "Volume (" + AsPrice(Start1) + " - " + AsPrice(End2) + ") = " + v30M, Color.Cyan);
# End Volume Label - 5 min / 30 min