العفو أخي
لدي سؤال اخر ارجو ان لااكون قد اكثرت عليك
اذا اردت عمل اكسبرت يفتح صفقات كل50 نقطة صفريةيعني كيف يتم عمل هذا ؟؟
يعنى 1.4250 - 14300 - 14350 - 14400 - 14450 - 14500
هل يتم يدوي يعني اعمل دالة ل1.4250 و دالة اخرى ل14300 و هكذا لانها سوف تأخذ و قت و جهد كبيرينو شكرا مقدما
تفضل اخي
ويارت تضفله الترلينغ ستوب
اتشكرك
اخواتى
MathCeil ماذا تعنى هذا الامر المحجوز وبماذا تستخدم ؟
الدايره FOR هل تاتى بناتج الصفقة بعد نهاية عملها فقط يعنى عندما يساوي 0 = 0
لان الدايره تفضل تعمل وتاتى بنتائج صفقات اخري لنفس الاكسيبرت
MathCeil
The function returns integer numeric value closest from above.
Parameters
val
[in] Numeric value.
Return Value
Numeric value representing the smallest integer that exceeds or equals to val.
Note
Instead of the MathCeil() function you can use ceil().
For Loop Operator
The for operator consists of three expressions and an executable operator:
Expression1 describes the loop initialization. Expression2 checks the conditions of the loop termination. If it is true, the loop body for is executed. The loop repeats expression2 until it becomes false. If it is false, the loop is terminated, and control is given to the next operator. Expression3 is calculated after each iteration.
The for operator is equivalent to the following succession of operators:
Any of the three or all three expressions can be absent in the for operator, but the semicolons (;) that separate them must not be omitted. If expression2 is omitted, it is considered constantly true. The for(;;) operator is a continuous loop, equivalent to the while(1) operator. Each expression 1 or 3 can consist of several expressions combined by a comma operator ','.
Note
If it is expected that a large number of iterations will be handled in a loop, it is advisable that you check the fact of forced program termination using the IsStopped() function.
Examples:
السلام عليكم
للتذكير
للمشاركة رقم 1134#
التعديل الأخير تم بواسطة samizhraldeen ; 28-03-2018 الساعة 07:54 AM
عايز دالة تعمل كالاتي
تقفل اي صفقات شراء يورو دولار مع (+) اي صفقات شراء دولار فرنك بربح عدد معين من الدولارات
كذلك يقفل اي صفقات بيع يورو دولار مع (+) اي صفقات بيع دولار فرنك بربح عدد معين من الدولارات
ملحوظة : اقصد بــ (أي) عدد محدد من الصفقات للزوجين وليس (كل) صفقات البيع او الشراء
يعني الدالة تختار اي صفقات شراء عشوائية للزوجين معاً (شراء يورو دولار + شراء دولار فرنك) بمجموع ربح بالدولار
كذلك اي صفقات بيع عشوائية للزوجين معاً (بيع يورو دولار + بيع دولار فرنك) بمجموع ربح بالدولار
الوظيفة MathCeil تقوم بحساب أكبر قيمة صحيحة للرقم المدخل ( 5.5 تصبح 6 و -5.5 تصبح -5 )بالنسبة للحلقة for راجع المشاركة التالي :
https://www.fxprg.com/vb/showthread.php?t=31457&page=29&p=879880&viewfull=1 #post879880
العلامات المرجعية