النتائج 1 إلى 10 من 10
  1. #1
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي موفنج افرج ستايلة نقط

    السلام عليكم
    احتاج الموفنج افرج العادي لكن ستايلة بدل الاين العادي احتاجة يكون cross او circle
    زي الصورة

    اضغط على الصورة لعرض أكبر

الاســـم:	cross.jpg
المشاهدات:	76
الحجـــم:	118.5 كيلوبايت
الرقم:	498918

  2. #2
    الصورة الرمزية رحمون
    رحمون غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Jul 2010
    الإقامة
    السعودية
    المشاركات
    1,239

    افتراضي

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

  3. #3
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    اقتباس المشاركة الأصلية كتبت بواسطة رحمون مشاهدة المشاركة
    تفضل ..

    جزاك الله
    الموشر يعمل بنجاح

  4. #4
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    اقتباس المشاركة الأصلية كتبت بواسطة رحمون مشاهدة المشاركة
    تفضل ..

    حاولت تغيير عرض النقط لكن لم انجح
    وعند محاولة الدخول علي الاعدادت لكن لا يفتح الموشر

  5. #5
    الصورة الرمزية رحمون
    رحمون غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Jul 2010
    الإقامة
    السعودية
    المشاركات
    1,239

    افتراضي

    جرب هذا ..
    الملفات المرفقة الملفات المرفقة

  6. #6
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    اقتباس المشاركة الأصلية كتبت بواسطة رحمون مشاهدة المشاركة
    جرب هذا ..

    بارك الله فيك

  7. #7
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    لم يعمل الموشر بشكل صحيح الظاهر انة قديم
    احتاج موشر موفنج افرج ستايلة نقط او اي علامة لكن رسمة يكون median Price

  8. #8
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    وجدت الموشر دا
    هل يمكن عمل نقطة او شرطة عند اماكن الانعاكس (تغيير الاتجاة






    //+------------------------------------------------------------------+
    //| Slope Direction Line.mq4 |
    //| Yuriy Tokman (YTG) |
    //| http://ytg.com.ua/ |
    //+------------------------------------------------------------------+
    #property copyright "Yuriy Tokman (YTG)"
    #property link "http://ytg.com.ua/"
    #property version "1.00"
    #property strict
    #property indicator_chart_window
    //---
    #property indicator_chart_window
    #property indicator_buffers 3
    #property indicator_color2 Red
    #property indicator_color3 Blue
    #property indicator_width2 2
    #property indicator_width3 2
    //---
    extern int period = 32;
    extern double FilterNumber = 2;
    extern int ma_method = 3;
    extern int applied_price = 0;
    //---- buffers
    double B0[];
    double B1[];
    double B2[];
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int OnInit()
    {
    //--- indicator buffers mapping
    int shift_begin=int(MathSqrt(period)+period+1);
    IndicatorShortName("Slope_Direction_Line("+DoubleT oStr(period,0)+")");
    SetIndexBuffer(0,B0);
    SetIndexBuffer(1,B1);
    SetIndexBuffer(2,B2);
    SetIndexStyle(0,DRAW_NONE);
    SetIndexStyle(1,DRAW_LINE);
    SetIndexStyle(2,DRAW_LINE);
    SetIndexDrawBegin(1,shift_begin);
    SetIndexDrawBegin(2,shift_begin);
    //---
    return(INIT_SUCCEEDED);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function |
    //+------------------------------------------------------------------+
    int OnCalculate(const int rates_total,
    const int prev_calculated,
    const datetime &time[],
    const double &open[],
    const double &high[],
    const double &low[],
    const double &close[],
    const long &tick_volume[],
    const long &volume[],
    const int &spread[])
    {
    //---
    int limit=rates_total-prev_calculated;
    if(prev_calculated==0)limit--;
    else limit++;
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    B0[i]=2*MA(i,(int)MathRound((double)period/FilterNumber))-MA(i,period);
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    B1[i]=iMAOnArray(B0,0,(int)MathRound(MathSqrt(period)), 0,ma_method,i);
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    {
    if(B1[i]>B1[i+1]) B2[i]=B1[i];
    else B2[i]=EMPTY_VALUE;
    }
    //--- return value of prev_calculated for next call
    return(rates_total);
    }
    //+------------------------------------------------------------------+
    //| |
    //+------------------------------------------------------------------+
    double MA(int shift,int p)
    {
    return(iMA(Symbol(), 0, p, 0, ma_method, applied_price, shift));
    }
    //+------------------------------------------------------------------+

  9. #9
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    اقتباس المشاركة الأصلية كتبت بواسطة yamin2000 مشاهدة المشاركة
    وجدت الموشر دا
    هل يمكن عمل نقطة او شرطة عند اماكن الانعاكس (تغيير الاتجاة






    //+------------------------------------------------------------------+
    //| Slope Direction Line.mq4 |
    //| Yuriy Tokman (YTG) |
    //| http://ytg.com.ua/ |
    //+------------------------------------------------------------------+
    #property copyright "Yuriy Tokman (YTG)"
    #property link "http://ytg.com.ua/"
    #property version "1.00"
    #property strict
    #property indicator_chart_window
    //---
    #property indicator_chart_window
    #property indicator_buffers 3
    #property indicator_color2 Red
    #property indicator_color3 Blue
    #property indicator_width2 2
    #property indicator_width3 2
    //---
    extern int period = 32;
    extern double FilterNumber = 2;
    extern int ma_method = 3;
    extern int applied_price = 0;
    //---- buffers
    double B0[];
    double B1[];
    double B2[];
    //+------------------------------------------------------------------+
    //| Custom indicator initialization function |
    //+------------------------------------------------------------------+
    int OnInit()
    {
    //--- indicator buffers mapping
    int shift_begin=int(MathSqrt(period)+period+1);
    IndicatorShortName("Slope_Direction_Line("+DoubleT oStr(period,0)+")");
    SetIndexBuffer(0,B0);
    SetIndexBuffer(1,B1);
    SetIndexBuffer(2,B2);
    SetIndexStyle(0,DRAW_NONE);
    SetIndexStyle(1,DRAW_LINE);
    SetIndexStyle(2,DRAW_LINE);
    SetIndexDrawBegin(1,shift_begin);
    SetIndexDrawBegin(2,shift_begin);
    //---
    return(INIT_SUCCEEDED);
    }
    //+------------------------------------------------------------------+
    //| Custom indicator iteration function |
    //+------------------------------------------------------------------+
    int OnCalculate(const int rates_total,
    const int prev_calculated,
    const datetime &time[],
    const double &open[],
    const double &high[],
    const double &low[],
    const double &close[],
    const long &tick_volume[],
    const long &volume[],
    const int &spread[])
    {
    //---
    int limit=rates_total-prev_calculated;
    if(prev_calculated==0)limit--;
    else limit++;
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    B0[i]=2*MA(i,(int)MathRound((double)period/FilterNumber))-MA(i,period);
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    B1[i]=iMAOnArray(B0,0,(int)MathRound(MathSqrt(period)), 0,ma_method,i);
    //---
    for(int i=0; i<limit && !IsStopped(); i++)
    {
    if(B1[i]>B1[i+1]) B2[i]=B1[i];
    else B2[i]=EMPTY_VALUE;
    }
    //--- return value of prev_calculated for next call
    return(rates_total);
    }
    //+------------------------------------------------------------------+
    //| |
    //+------------------------------------------------------------------+
    double MA(int shift,int p)
    {
    return(iMA(Symbol(), 0, p, 0, ma_method, applied_price, shift));
    }
    //+------------------------------------------------------------------+

    هل صعب ام المبرمجين مشغولين؟

  10. #10
    الصورة الرمزية yamin2000
    yamin2000 غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Oct 2007
    الإقامة
    السعودية
    المشاركات
    1,044

    افتراضي

    تم الحل
    شكرا


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