Need an indior that gives a sound alert every 14 minutes
Page 1 of 502 12 LastLast
Results 1 to 10 of 11

Thread: Need an indior that gives a sound alert every 14 minutes

  1. #1
    N
    Guest
    . . !

    Thanks to the helpers...!

  2. #2
    Quote Originally Posted by ;
    someone please...? . .
    Learn some patience and humility. You didn't even say what platform it had been for... MT5? MT4 ? Ninja ? ...

  3. #3
    N
    Guest
    Quote Originally Posted by ;
    quote Find out some patience and humility. You didn't even say what platform it had been for... MT5? MT4 ? Ninja ? ... .
    Sorry, im using mt4

    I want easy sound awake every 14 min, attempted to google it and no consequences so far. .

  4. #4
    3 lines of code included.

    This might do the trick.

    Inserted Code #property copyright #property Hyperlink #property show_inputs extern int seconds = 1; //p ------------------------------------------------------------------ //| script program begin operate | // ------------------------------------------------------------------ int init() seconds = seconds * 1000; int begin () while(true) Sleep(seconds); PlaySound(alert.wav); return(0);
    or the recursive variant

    Inserted Code int begin () Sleep(seconds); PlaySound(alert.wav); begin (); return(0);

  5. #5
    N
    Guest
    Quote Originally Posted by ;
    3 lines of code included. This might do the trick. #property copyright #property link #property show_inputs extern int seconds = 1; // ------------------------------------------------------------------ //| script program start function | // ------------------------------------------------------------------ int init() seconds = seconds * 1000; int start() while(true) Sleep(seconds); PlaySound(alert.wav); return(0); or the recursive version int start() Sleep(seconds); PlaySound(alert.wav); start(); return(0);
    just flooding me with audio notifiions. .

    Is can set it for only 1 audio notifiion and out of 0if I shut the mt4 and open it again it will notify my only when the time comes

    I want it to notify me only 1 time every time that I got 1 minute left to the 15m candle nearer

    such as:
    18:59
    19:14
    19:29
    19:44
    19:59
    etc..

    Thank you for the time partner

  6. #6
    Looks like he gave you what was asked for. Maybe its not what you desired, but you need to offer a clear explanation when creating requests.

  7. #7
    N
    Guest
    Quote Originally Posted by ;
    Seems like he gave you what has been asked for. Perhaps its not exactly what you desired, but you should provide a clear explanation when creating requests.
    You right. . , the details are posted in my very last replay. . , hope anybody can help. . That will truly be great

  8. #8
    Quote Originally Posted by ;
    quote just flooding me with sound notifiions. . Is can set it to get just 1 sound telling and out of 0, even if I shut the mt4 and open it again it will inform my just when the time comes I need it to inform me just 1 time each time that I got 1 minute left to the 15m candle closer like: 18:59 19:14 19:29 19:44 19:59 etc.. Thank you for your time mate
    You said that you wanted an alert every 14 minutes, however here you are asking to get an alert each 15 minutes and in a particular time.

  9. #9
    To put it in another manner:

    He wants an alert that sounds 1 minute prior to each new 15 minute candle formation.

  10. #10
    The proper title for what he wants (not what he requested) is a countdown timer. There are dozens of these available by hunting.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners more information