النتائج 1 إلى 4 من 4
  1. #1
    الصورة الرمزية Saadbinmajed
    Saadbinmajed غير متواجد حالياً المتداول العربي
    تاريخ التسجيل
    Feb 2018
    الإقامة
    السعودية
    العمر
    42
    المشاركات
    1

    افتراضي احتاج ممبرمج اكسبرت

    السلام عليكم ورحمة الله بركاتة مطلوب ممبرمج اكسبرت عندي الكود بس ابي يضيف شي بسيط

    //@version=4
    // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // colinmck

    study("QQE signals", overlay=true)

    RSI_Period = input(14, title='RSI Length')
    SF = input(5, title='RSI Smoothing')
    QQE = input(4.238, title='Fast QQE Factor')
    ThreshHold = input(10, title="Thresh-hold")

    src = close
    Wilders_Period = RSI_Period * 2 - 1

    Rsi = rsi(src, RSI_Period)
    RsiMa = ema(Rsi, SF)
    AtrRsi = abs(RsiMa[1] - RsiMa)
    MaAtrRsi = ema(AtrRsi, Wilders_Period)
    dar = ema(MaAtrRsi, Wilders_Period) * QQE

    longband = 0.0
    shortband = 0.0
    trend = 0

    DeltaFastAtrRsi = dar
    RSIndex = RsiMa
    newshortband = RSIndex + DeltaFastAtrRsi
    newlongband = RSIndex - DeltaFastAtrRsi
    longband := RSIndex[1] > longband[1] and RSIndex > longband[1] ? max(longband[1], newlongband) : newlongband
    shortband := RSIndex[1] < shortband[1] and RSIndex < shortband[1] ? min(shortband[1], newshortband) : newshortband
    cross_1 = cross(longband[1], RSIndex)
    trend := cross(RSIndex, shortband[1]) ? 1 : cross_1 ? -1 : nz(trend[1], 1)
    FastAtrRsiTL = trend == 1 ? longband : shortband

    // Find all the QQE Crosses

    QQExlong = 0
    QQExlong := nz(QQExlong[1])
    QQExshort = 0
    QQExshort := nz(QQExshort[1])
    QQExlong := FastAtrRsiTL < RSIndex ? QQExlong + 1 : 0
    QQExshort := FastAtrRsiTL > RSIndex ? QQExshort + 1 : 0

    //Conditions

    qqeLong = QQExlong == 1 ? FastAtrRsiTL[1] - 50 : na
    qqeShort = QQExshort == 1 ? FastAtrRsiTL[1] - 50 : na

    // Plotting

    plotshape(qqeLong, title="QQE long", text="Long", textcolor=color.white, style=shape.labelup, location=location.belowbar, color=color.green, transp=0, size=size.tiny)
    plotshape(qqeShort, title="QQE short", text="Short", textcolor=color.white, style=shape.labeldown, location=location.abovebar, color=color.red, transp=0, size=size.tiny)

    // Alerts

    alertcondition(qqeLong, title="Long", message="Long")
    alertcondition(qqeShort, title="Short", message="Short")

    ابي يضيف امر long اذا طلع في الشارت امر شراء
    ابي يضيف امر shortاذا طلع في الشارت امر بيع
    وتحدد لوت حسب الطلب

    اكون له من الشاكرين

  2. #2
    الصورة الرمزية أسامة
    أسامة غير متواجد حالياً عضو نشيط
    تاريخ التسجيل
    Jun 2005
    الإقامة
    ليبيا
    المشاركات
    1,763

    افتراضي

    أخي ...
    هذا ليس بلعة mql4
    توقيع العضو
    نَصِيحَتِي لَكَ... اِبْحَثْ جَيِّدًا قَبْلَ أَنْ تَسْأَلَ... فَهَذَا يُعْلِمَك أَكْثَرَ

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

    افتراضي

    هذا الكود مكتوب بلغة ميتاستوك
    توقيع العضو
    !!! أفضل و أشمل اكسبيرت لتداول الترندات المكسورة - من برمجتي !!!

  4. #4
    الصورة الرمزية haz1
    haz1 غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Dec 2015
    الإقامة
    مصر
    المشاركات
    44

    افتراضي

    بالتوفيق ان شاء الله:


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