النتائج 1 إلى 9 من 9
الموضوع: مطلوب نصيحة عاجلة وشكرا مسبقا......
- 02-05-2010, 02:45 PM #1
مطلوب نصيحة عاجلة وشكرا مسبقا......
السلام عليكم
اريد نصيحة من الاخوة المبرمجين
هذا السكربت يقوم بفتح 10 صفقات سال
المشكل هو عند قيامه بفتح الصفقات لو تغير السعر بنقطة واحدة يتوقف عن فتح الصفقات
انا اريده ان يستمر في فتح الصفقات حتى لو تغير السعر 10 نقاط
استعملت خاصية slippage و لكن لا شيء تغير
ارجوا المساعدة و شكرا مسبقاكود://+------------------------------------------------------------------+ //| JMBUYER.mq4 | //| Copyright © 2008, PRMQuotes Software Corp. | //| [email protected] | //+------------------------------------------------------------------+ #property copyright "Copyright © 2008, PRMQuotes Software Corp." #include <stdlib.mqh> #include <WinUser32.mqh> //+----------------------------------------------------------------------+ //| To modify Lotsize of script change value listed here, right now | //| its set to 1.0 change that value if you desire different lotsize | //| I have found that it is important to keep the decimal in place, | //| but really dont know why yet, but fractional lots work too (ex... | //| 0.1, 0.3, 1.12), you get the picture. | //| AGAIN DONT FORGET TO SAVE AND COMPILE AFTER MAKING ANY MODIFICATIONS | //+----------------------------------------------------------------------+ extern double Lots = 1.0; //+---Don't forget to save and compile after changing the Lotsize--------+ //+------------------------------------------------------------------+ //| Each of the following lines produces an individual order | //| 10 lines produces 10 orders, to increase or decrease the number | //| of individual orders either add, or take away identical lines | //| within the parenthesis. Again dont forget to save and compile | //| time you modify the code. | //+------------------------------------------------------------------+ int start() { OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE); return(0); } //+------------------------------------------------------------------+
- 02-05-2010, 02:51 PM #2
رد: مطلوب نصيحة عاجلة وشكرا مسبقا......
هل الغرض من هذا الإسكربت هو فتح صفقات بمجرد تفعيله على الشارت
جرب الإكسبرت في هذا الموضوع سيفيدك
https://forum.arabictrader.com/t93053.html
- 02-05-2010, 02:54 PM #3
رد: مطلوب نصيحة عاجلة وشكرا مسبقا......
آخر تعديل بواسطة bilou ، 02-05-2010 الساعة 03:19 PM
- 02-05-2010, 07:58 PM #4
رد: مطلوب نصيحة عاجلة وشكرا مسبقا......
اظن انه لا توجد مساعدة غير نصيحة الاخ مستر دولار ...؟؟؟؟
- 02-05-2010, 08:06 PM #5
- 02-05-2010, 08:12 PM #6
- 02-05-2010, 09:44 PM #7
- 02-05-2010, 10:49 PM #8
- 03-05-2010, 12:00 AM #9
رد: مطلوب نصيحة عاجلة وشكرا مسبقا......
أرفقت لك الإكسبرت بصيغة mq4 فيمكنك فتحه والإطلاع على الكود بنفسك
وعلى العموم أرفقت لك الكود أيضا
كود PHP://+------------------------------------------------------------------+
//| JMBUYER.mq4 |
//| Copyright © 2008, PRMQuotes Software Corp. |
//| [email protected] |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2008, PRMQuotes Software Corp."
//+----------------------------------------------------------------------+
//| To modify Lotsize of script change value listed here, right now |
//| its set to 1.0 change that value if you desire different lotsize |
//| I have found that it is important to keep the decimal in place, |
//| but really dont know why yet, but fractional lots work too (ex... |
//| 0.1, 0.3, 1.12), you get the picture. |
//| AGAIN DONT FORGET TO SAVE AND COMPILE AFTER MAKING ANY MODIFICATIONS |
//+----------------------------------------------------------------------+
extern double Lots = 1.0;
//+---Don't forget to save and compile after changing the Lotsize--------+
//+------------------------------------------------------------------+
//| Each of the following lines produces an individual order |
//| 10 lines produces 10 orders, to increase or decrease the number |
//| of individual orders either add, or take away identical lines |
//| within the parenthesis. Again dont forget to save and compile |
//| time you modify the code. |
//+------------------------------------------------------------------+
bool enter=true;
int start()
{
if(enter){
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
OrderSend(Symbol(),OP_SELL,Lots,Bid,3,0,Bid-10*Point,"JMSELLER",0,0,CLR_NONE);
enter=false;
}
return(0);
}
//+--------------------------
//+------------------------------------------------------------------+
المواضيع المتشابهه
-
نصيحة عاجلة لو تكرمتم
By friendship in forum توقعات وتوصيات سوق العملاتمشاركات: 3آخر مشاركة: 22-06-2009, 08:50 PM -
ارجو نصيحة عاجلة
By friendship in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادنمشاركات: 5آخر مشاركة: 22-06-2009, 07:07 PM -
مطلوب مساعدة عاجلة
By mercury_man in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادنمشاركات: 9آخر مشاركة: 01-09-2007, 08:08 PM -
فوكي لايعرف مسبقا متى يتم رفع الفائدة ؟؟
By التحليلات والأخبار in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادنمشاركات: 0آخر مشاركة: 16-11-2006, 01:08 PM