Alarm at close of 4 hour bar

 

Does anyone know how to use alert feature to have an alert sound at the close of each 4 hour bar?

 

JM

I think the first tick of <the next bar> will do?


if (Volume[0]=1)
  {
   Alert("Some Alert info");
   Print("Some printed info");
   PlaySound("Alert.wav");
  }

Good Luck

-BB-

Reason: