candle countdown timer

 
Has anyone any idea how to get and install a time that counts down the seconds until the next candle appears for mt4 forexpro platform... thanks
 
brianjenkins: Has anyone any idea how to get and install a time that counts down the seconds until the next candle appears
You need an indicator.
  1. You have only three choices: Search for it, learn to code it, or pay someone. We're not going to code it FOR you. We are willing to HELP you when you post your attempt (using SRC) and the nature of your problem.
  2. datetime beginOfBar  = Time[0];
    datetime endOfBar    = beginOfBar + 60 * _Period;
    int      secondsToGo = endOfBar - TimeCurrent(); // Could go negative
Reason: