+ Reply to Thread
Results 1 to 2 of 2
 2 Attachment(s)    

Thread: HELP - Put an Alert on Laguerre Indicator

  1. #1
    Junior Member
    Join Date
    Jan 2009
    Posts
    18

    Default HELP - Put an Alert on Laguerre Indicator

    Hi Funyoo,

    Would you kind enough to help me put an sound alert in the Laguerre Indicator? I need to have a sound alert whenever the Laguerre indicator touches the 0.15 line on the way up and the 0.75 line on the way down. Attached is the Laguerre indicator. Many thanks to you if you able manage to slip this favor into your busy time.
    Attached Files

  2. #2
    Junior Member
    Join Date
    Jun 2009
    Posts
    3

    Wink

    i think this is what you want (Im not that good at MQL4 yet)

    double Lag=iCustom(Symbol(), NULL, 0.66, 950, 0);
    double Lag_delay=iCustom(Symbol(), NULL, 0.66, 950, 1);


    if (Lag_delay > 0.15 && Lag < 0.15)
    {
    Alert("Laguerre 0.15 crossed!");
    }
    if (Lag_delay < 0.75 && Lag > 0.75)
    {
    Alert("Laguerre 0.75 crossed!");
    }

+ Reply to Thread

Similar Threads

  1. Add a pop-up alert to an indicator
    By funyoo in forum MQL programming
    Replies: 6
    Last Post: 04-25-2011, 22:01
  2. Add an email alert to an indicator
    By funyoo in forum MQL programming
    Replies: 5
    Last Post: 04-22-2011, 16:55
  3. Add a sound alert to an indicator
    By funyoo in forum MQL programming
    Replies: 4
    Last Post: 08-29-2009, 07:05
  4. Alert in Indicator
    By tattoo-angel in forum Indicators
    Replies: 0
    Last Post: 05-01-2009, 07:12
  5. Demark Lines Indicator + Email Alert
    By bnbb2004 in forum Indicators
    Replies: 0
    Last Post: 12-03-2008, 12:40

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts