تغيير طفيف على MACD
Results 1 to 7 of 7

Thread: تغيير طفيف على MACD

  1. #1
    3 مرفق (مرفقات) مرحبًا يا أصدقاء ،

    أحتاج إلى 3 تغييرات على MACD indi مع التنبيه الذي أوضحته في الموافقة المسبقة عن علم.

    أول واحد يقوم بإزالة تنبيه M5 مهم جدًا بالنسبة لي ويتضمن أيضًا تنبيه SOUND ولكن يمكن ترك تنبيه آخر لليوم إذا كان من الصعب القيام بذلك.

    ليس لدي فكرة عن البرمجة


    شكرا لك على مساعدتك
    مايك


    https://www.cavemantrading.com/forex...ts-broker.html

    https://www.cavemantrading.com/attac...1931374664.mq4

    https://www.cavemantrading.com/attac...1622251171.ex4

  2. #2
    الأول من تموز (يوليو) آسيا: ربح 25 45 = 70 Mon NY: Loss ej and gu -15-15-15-15-15-15 = -90

  3. #3

  4. #4

  5. #5
    رمز مدرج/ --------------------------------------------- --------------------- /| MACD OsMA.mq4 مخصص |/| حقوق النشر © 2004 لشركة MetaQuotes Software Corp .. |/| http://www.metaquotes.net/|/p ----------------------------------------------- ------------------- #property حقوق النشر محفوظة © 2004 لشركة MetaQuotes Software Corp. #property hyperlink http://www.metaquotes.net///- إعدادات إينديور #property indior_separate_window #property indior_buffers 3 #property indior_color1 Silver #property indior_color2 Crimson #property indior_color3 Silver/- المعلمات الداخلية الخارجية int FastEMA = 5 ؛ خارجي int SlowEMA = 34 ؛ خارجي int SignalSMA = 9 ؛ AlertOn خارجي منطقي = صحيح ؛/- مخازن داخلية مزدوجة ind_buffer1 # 91 ؛ # 93 ؛؛ مزدوج ind_buffer2 # 91 ؛ # 93 ؛؛ مزدوج ind_buffer3 # 91 ؛ # 93 ؛؛/p ----------------------------------------------- ------------------- /| وظيفة التهيئة الداخلية المخصصة |/p ----------------------------------------------- ------------------- int init ()/- إعدادات الرسم SetIndexStyle (0، DRAW_LINE، STYLE_SOLID، 1)؛ SetIndexStyle (1، DRAW_LINE، STYLE_SOLID، 1) ، SetIndexStyle (2، DRAW_HISTOGRAM، STYLE_SOLID، 2) ، SetIndexDrawBegin (1 ، SignalSMA) ، IndiorDigits (MarketInfo (Symbol ()، MODE_DIGITS) 1) ؛/- تعيين المخازن المؤقتة الداخلية إذا (! SetIndexBuffer (0، ind_buffer1)! SetIndexBuffer (1، ind_buffer2)! SetIndexBuffer (two، ind_buffer3)) الطباعة (لا يمكن وضع المخازن المؤقتة الداخلية!)) ؛/- عنوان DataWindow وعلامة النافذة الفرعية الداخلية IndiorShortName (MACD ( FastEMA ، SlowEMA ، SignalSMA )) ؛ SetIndexLabel (0، MACD) ، SetIndexLabel (1 ، إشارة) ؛ SetIndexLabel (اثنان ، OsMA) ،/- تمت التهيئة رجوعًا (0) ؛/ ----------------------------------------------- ------------------- /| تقاربتباعد المتوسطات المتحركة |/ ----------------------------------------------- ------------------- int start () int limit؛ Osmanow مزدوج ، OsMA Previous ؛ ثابت التاريخ والوقت السابق = 0 ؛ int counted_bars = IndiorCounted () ،/- تحقق من الأخطاء المحتملة إذا (counted_barslt؛ 0) عادت (-1) ؛/- من المحتمل إعادة حساب آخر حانة تم عدها إذا (counted_barsgt؛ 0) counted_bars--؛ Limit = Bars-counted_bars ؛/- macd محسوب في المخزن المؤقت 1-st لـ (int I = 0؛ ilt؛ limit؛ I ) ind_buffer1 # 91؛ I # 93؛ = iMA (NULL، 0، FastEMA، 0، MODE_EMA، PRICE_CLOSE، I) -iMA (NULL، 0، SlowEMA، 0، MODE_EMA، PRICE_CLOSE، I) ؛/- تم حساب خط الإشارة في المخزن المؤقت الثاني من أجل (I = 0 ؛ ilt ؛ تحديد ؛ I ) ind_buffer2 # 91 ؛ I # 93 ؛ = iMAOnArray (ind_buffer1 ، Bars ، SignalSMA ، 0 ، MODE_SMA ، I) ؛ لـ (I = 0؛ ilt؛ limit؛ I ) ind_buffer3 # 91؛ I # 93؛ = iOsMA (NULL، 0، FastEMA، SlowEMA، SignalSMA، PRICE_CLOSE، I) ؛/- تحقق/======= تنبيه ========= إذا (AlertOn) إذا (prevtime == الوقت # 91 ؛ 0 # 93 ؛ -RRB- عودة (0) ؛ prevtime = الوقت # 91 ؛ 0 # 93 ؛ ؛ OsMANow = iOsMA (NULL ، 0 ، FastEMA ، SlowEMA ، SignalSMA ، PRICE_CLOSE ، 0) ؛ OsMAPrevious = iOsMA (NULL ، 0 ، FastEMA ، SlowEMA ، SignalSMA ، PRICE_CLOSE ، 1) ؛ إذا ( (OsMANow lt؛ 0) (OsMA Previous gt؛ 0)) PlaySound (alert.wav)؛ if ((OsMANow gt؛ 0) (OsMAPrevious lt؛0)) PlaySound (alert.wav) ؛ IndiorShortName (MACD ( FastEMA ، SlowEMA ، SignalSMA ) (التنبيه عند)) ؛/======= نهايات التنبيه ========= return (0) ؛

  6. #6
    بفضل رونالد مايك

  7. #7
    الثاني من تموز (يوليو) آسيا: خسارة-فوز -25-25 = -50 25 BE = 25 نيويورك: فز فقط بمركز واحد من EJ 15 ( 46 أكثر) فوز GU أيضًا 20

أذونات النشر

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •  
  • رمز BB مفعل
  • الابتسامات مفعلة
  • رمز[IMG] مفعل
  • رمز [VIDEO] مفعل
  • رمز HTML غير مفعل
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.