النتائج 1 إلى 4 من 4

الموضوع: moving average alert

  1. #1
    الصورة الرمزية kingooo
    kingooo غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Apr 2009
    الإقامة
    مصر
    العمر
    44
    المشاركات
    1,186

    Question moving average alert

    الرجاء من اخوتي طلب صغير

    أريد مؤشر يقوم بعمل تنبيه بطريقة أو بأخرى عند وصول المفينج افراج EMA5 Close 0 shift
    إلى سعر معين اقوم أنا بتحديده له في بداية اليوم

    شاكر مجهودكم مقدما

  2. #2
    الصورة الرمزية 101
    101
    101 غير متواجد حالياً عضو اللجنة الاستشارية سابقاً
    تاريخ التسجيل
    Sep 2008
    الإقامة
    المملكة العربية السعودية
    المشاركات
    2,759

    افتراضي رد: moving average alert

    فيه في المنتدى استراتيجيه
    للاخ بوحه
    اسمها استراتيجيه صبح صبح

    يوجد فيها موشر تقاطع الموفنج مع تنبيه

    اذا اردت ان يكون التنبيه عند تقاطع الموفنج مع السعر ضع احد الموفنج قيمته 1
    والاخر 5

    تقبل تقديري

  3. #3
    الصورة الرمزية abo ali 21
    abo ali 21 غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Jun 2008
    الإقامة
    اقدم عاصمة بالتاريخ ( دمشق )
    العمر
    44
    المشاركات
    637

    افتراضي رد: moving average alert

    جرب هذا و ضع الاعدادات كما قال لك .

    الملفات المرفقة الملفات المرفقة

  4. #4
    الصورة الرمزية abo ali 21
    abo ali 21 غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Jun 2008
    الإقامة
    اقدم عاصمة بالتاريخ ( دمشق )
    العمر
    44
    المشاركات
    637

    13 رد: moving average alert

    تفضل هذا ايضا :


    كود PHP:
    //+------------------------------------------------------------------+
    //|                                         EMA-Crossover_Signal.mq4 |
    //|         Copyright © 2005, Jason Robinson (jnrtrading)            |
    //|                   http://www.jnrtading.co.uk                     |
    //+------------------------------------------------------------------+

    /*
      +------------------------------------------------------------------+
      | Allows you to enter two ema periods and it will then show you at |
      | Which point they crossed over. It is more usful on the shorter   |
      | periods that get obscured by the bars / candlesticks and when    |
      | the zoom level is out. Also allows you then to remove the emas   |
      | from the chart. (emas are initially set at 5 and 6)              |
      +------------------------------------------------------------------+
    */   
    #property copyright "Copyright © 2005, Jason Robinson (jnrtrading)"
    #property link      "http://www.jnrtrading.co.uk"

    #property indicator_chart_window
    #property indicator_buffers 4
    #property indicator_color1 Lime
    #property indicator_color2 Red

    double CrossUp[];
    double CrossDown[];
    extern int FasterMode 3//0=sma, 1=ema, 2=smma, 3=lwma
    extern int FasterMA =   2;
    extern int SlowerMode 3//0=sma, 1=ema, 2=smma, 3=lwma
    extern int SlowerMA =   5;
     
    double alertTag;
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function                         |
    //+------------------------------------------------------------------+
    int init()
      {
    //---- indicators
       
    SetIndexStyle(0DRAW_ARROW,0,2);
       
    SetIndexArrow(0233);
       
    SetIndexBuffer(0CrossUp);

       
    SetIndexStyle(1DRAW_ARROW,0,2);
       
    SetIndexArrow(1234);
       
    SetIndexBuffer(1CrossDown);

    //----
       
    return(0);
      }
    //+------------------------------------------------------------------+
    //| Custom indicator deinitialization function                       |
    //+------------------------------------------------------------------+
    int deinit()
      {
    //---- 

    //----
       
    return(0);
      }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function                              |
    //+------------------------------------------------------------------+
    int start() {
       
    int limiticounter;
       
    double fasterMAnowslowerMAnowfasterMApreviousslowerMAprevious
    fasterMAafterslowerMAafter;
       
    double RangeAvgRange;
       
    int counted_bars=IndicatorCounted();
    //---- check for possible errors
       
    if(counted_bars<0) return(-1);
    //---- last counted bar will be recounted
       
    if(counted_bars>0counted_bars--;

       
    limit=Bars-counted_bars;
       
       for(
    0<= limiti++) {
       
          
    counter=i;
          
    Range=0;
          
    AvgRange=0;
          for (
    counter=;counter<=i+9;counter++)
          {
             
    AvgRange=AvgRange+MathAbs(High[counter]-Low[counter]);
          }
          
    Range=AvgRange/10;
           
          
    fasterMAnow =      iMA(NULL0FasterMA0FasterModePRICE_CLOSEi);
          
    fasterMAprevious iMA(NULL0FasterMA0FasterModePRICE_CLOSEi+1);
          
    fasterMAafter =    iMA(NULL0FasterMA0FasterModePRICE_CLOSEi-1);

          
    slowerMAnow =      iMA(NULL0SlowerMA1SlowerModePRICE_OPENi);
          
    slowerMAprevious iMA(NULL0SlowerMA1SlowerModePRICE_OPENi+1);
          
    slowerMAafter =    iMA(NULL0SlowerMA1SlowerModePRICE_OPENi-1);
          
          if ( (
    fasterMAnow slowerMAnow) && (fasterMAprevious slowerMAprevious) && (fasterMAafter slowerMAafter)) 
          {
             
    CrossUp[i] = Low[i] - Range*0.5;
             if ( 
    alertTag!=Time[0])
             {
              
    //PlaySound("news.wav");// buy wav
              
    Alert(Symbol(),"  M",Period()," MA cross BUY");
             }
              
    alertTag Time[0];
          }
          else if ((
    fasterMAnow slowerMAnow) && (fasterMAprevious slowerMAprevious) && (fasterMAafter slowerMAafter)) 
          {
             
    CrossDown[i] = High[i] + Range*0.5;
             if ( 
    alertTag!=Time[0])
             {
              
    //PlaySound("news.wav"); //sell wav
               
    Alert(Symbol(),"  M",Period()," MA cross SELL");
             }
              
    alertTag Time[0];
          }
       }
       return(
    0);


المواضيع المتشابهه

  1. Moving Average
    By سامووو المملكة in forum استفسارات وأسئلة المبتدئين
    مشاركات: 1
    آخر مشاركة: 30-04-2010, 07:45 AM
  2. Moving Average Alert
    By kingooo in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادن
    مشاركات: 3
    آخر مشاركة: 22-11-2009, 06:30 PM
  3. Moving Average
    By نورالدين أمجاظ in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادن
    مشاركات: 7
    آخر مشاركة: 31-12-2008, 02:43 AM
  4. Moving Average
    By aljameel in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادن
    مشاركات: 16
    آخر مشاركة: 02-11-2008, 03:56 AM
  5. moving average
    By minime in forum برمجة المؤشرات واكسبرتات التداول - Experts Advisor EA
    مشاركات: 3
    آخر مشاركة: 05-05-2008, 03:57 PM

الاوسمة لهذا الموضوع


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17