النتائج 1 إلى 2 من 2
  1. #1
    الصورة الرمزية mohamed.salahh
    mohamed.salahh غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Dec 2018
    الإقامة
    مصر
    المشاركات
    5

    افتراضي مؤشر على ميتا ستوك اريد تحويله الى اكسيبرت للميتا تريدر 4 وهذه المعادله

    مؤشر على ميتا ستوك اريد تحويله الى اكسيبرت للميتا تريدر 4 وهذه المعادله واسم المؤشرBull Power Bear Power 1 وشكرا للاهتمام



    Trading signals for <Name> (<Symbol>) on <Date>





    WriteIf(a:=(H-Mov(C,13,E))>0-(L-Mov(C,13,E));b:=(L-Mov(C,13,E))<0-(H-Mov(C,13,E));


    state:=If(BarsSince(a)<BarsSince(b),1,0);


    state>Ref(state,-1),"If trading short positions, exit all short positions today with a Market On Close (MOC) order or at the market price on tomorrow's open.





    If trading long positions, enter long today with a Market On Close (MOC) order or at the market price on tomorrow's open. ")\


    \


    WriteIf(a:=(H-Mov(C,13,E))>0-(L-Mov(C,13,E));b:=(L-Mov(C,13,E))<0-(H-Mov(C,13,E));


    state:=If(BarsSince(a)<BarsSince(b),1,0);


    state<Ref(state,-1),"If trading long positions, exit all long positions today with a Market On Close (MOC) order or at the market price on tomorrow's open.





    If trading short positions, enter short today with a Market On Close (MOC) order or at the market price on tomorrow's open. ")\


    \


    WriteIf(a:=(H-Mov(C,13,E))>0-(L-Mov(C,13,E));b:=(L-Mov(C,13,E))<0-(H-Mov(C,13,E));


    state:=If(BarsSince(a)<BarsSince(b),1,0);


    state=Ref(state,-1),"No trading signals today.")



    The concept of Bull Power and Bear Power was developed and introduced by Alexander Elder. Bull Power is calculated by subtracting a 13-period exponential moving average from the high price. This is typically displayed as a histogram oscillating above and below the zero line. A higher reading above the zero line gives strength to the Bull Power. Bear Power is calculated by subtracting a 13-period exponential moving average from the low price. This is also typically displayed as a histogram oscillating above and below the zero line. A lower reading below the zero line gives strength to the Bear Power.





    This system forces each indicator to use the same scaling method as the other. As long as the Bull Power is stronger above the zero line than the Bear Power strength is below the zero line, then a long position is maintained. If Bear Power strength below the zero line is greater than the Bull Power strength above the zero line, then a short position is maintained.

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

    افتراضي

    اين صورة المؤشر مع الشرح


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