النتائج 9,616 إلى 9,630 من 10335
الموضوع: موضوع مخصص للأسئلة البرمجية
- 05-06-2019, 04:13 PM #9616
جرب هذا الكود
انا مسحت الاسطر الخاصة بحذف الاوامر المعلقة
كود PHP:void Close_ALL_Orders()
{
int total = OrdersTotal();
for(int i=total-1;i>=0;i--)
{
if(OrderSelect(i, SELECT_BY_POS))
if(OrderSymbol()==Symbol() && OrderMagicNumber()== MagicNumber)
{
int type = OrderType();
bool result = false;
switch(type)
{
case OP_BUY : result = OrderClose(OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_BID),30,clrNONE);
break;
case OP_SELL: result = OrderClose( OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_ASK),30,clrNONE);
}
if(result == false)
{
Sleep(0);
}
}
}
}
- 10-06-2019, 07:01 PM #9617
السلام عليكم مستر دولار
في محاولة لعمل اكسبيرت لمؤشر دايفرجنس للماكد لم تنجح المحاوله
الرجاء توضيح اين الخطاء
بارك الله فيك
مرفق المؤشر والاكسبيرت
- 11-06-2019, 07:48 PM #9618
- 11-06-2019, 09:37 PM #9619
السلام عليكم اخي اسامة...
شكلك نسيتنا يا اخي.... من رمضان وانا اسأل عنك...سألت خلق الله وانا ابحث عنك بالسراج...
او شكله الدولار خطفك من بيننا..ولكن يقيني يقول انك من الاشخاص الذين لا يغيرهم لا اليوو ولا الدولار!!!!!
والنقي يبقى نقي... تحياتي لشخصكم الكريم!
- 12-06-2019, 12:48 PM #9620
- 12-06-2019, 04:04 PM #9621
- 12-06-2019, 06:42 PM #9622
- 17-06-2019, 06:32 PM #9623
كيف يتم ارسال امر لفتح اوامر البيع و الشراء (العادية و المعلقة) Mql5
سلام عليكم و رحمة الله وبركاته
عندي سوال عن لغة Mql5
كيف يتم ارسال اوامر البيع و الشراء و ما هي الخاصية المسوْولة عنه
و كيف تعمل الاوامر التالية
كود PHP:bool OrderSend(
MqlTradeRequest& request, // query structure
MqlTradeResult& result // structure of the answer
);
كود PHP:struct MqlTradeRequest
{
ENUM_TRADE_REQUEST_ACTIONS action; // Trade operation type
ulong magic; // Expert Advisor ID (magic number)
ulong order; // Order ticket
string symbol; // Trade symbol
double volume; // Requested volume for a deal in lots
double price; // Price
double stoplimit; // StopLimit level of the order
double sl; // Stop Loss level of the order
double tp; // Take Profit level of the order
ulong deviation; // Maximal possible deviation from the requested price
ENUM_ORDER_TYPE type; // Order type
ENUM_ORDER_TYPE_FILLING type_filling; // Order execution type
ENUM_ORDER_TYPE_TIME type_time; // Order expiration type
datetime expiration; // Order expiration time (for the orders of ORDER_TIME_SPECIFIED type)
string comment; // Order comment
ulong position; // Position ticket
ulong position_by; // The ticket of an opposite position
};
كود PHP:struct MqlTradeRequest
{
ENUM_TRADE_REQUEST_ACTIONS action; // Trade operation type
ulong magic; // Expert Advisor ID (magic number)
ulong order; // Order ticket
string symbol; // Trade symbol
double volume; // Requested volume for a deal in lots
double price; // Price
double stoplimit; // StopLimit level of the order
double sl; // Stop Loss level of the order
double tp; // Take Profit level of the order
ulong deviation; // Maximal possible deviation from the requested price
ENUM_ORDER_TYPE type; // Order type
ENUM_ORDER_TYPE_FILLING type_filling; // Order execution type
ENUM_ORDER_TYPE_TIME type_time; // Order expiration type
datetime expiration; // Order expiration time (for the orders of ORDER_TIME_SPECIFIED type)
string comment; // Order comment
ulong position; // Position ticket
ulong position_by; // The ticket of an opposite position
};
- 17-06-2019, 06:33 PM #9624
كيف يتم ارسال امر لفتح اوامر البيع و الشراء (العادية و المعلقة) Mql5
سلام عليكم و رحمة الله وبركاته
عندي سوال عن لغة Mql5
كيف يتم ارسال اوامر البيع و الشراء و ما هي الخاصية المسوْولة عنه
و كيف تعمل الاوامر التالية
كود PHP:bool OrderSend(
MqlTradeRequest& request, // query structure
MqlTradeResult& result // structure of the answer
);
كود PHP:struct MqlTradeRequest
{
ENUM_TRADE_REQUEST_ACTIONS action; // Trade operation type
ulong magic; // Expert Advisor ID (magic number)
ulong order; // Order ticket
string symbol; // Trade symbol
double volume; // Requested volume for a deal in lots
double price; // Price
double stoplimit; // StopLimit level of the order
double sl; // Stop Loss level of the order
double tp; // Take Profit level of the order
ulong deviation; // Maximal possible deviation from the requested price
ENUM_ORDER_TYPE type; // Order type
ENUM_ORDER_TYPE_FILLING type_filling; // Order execution type
ENUM_ORDER_TYPE_TIME type_time; // Order expiration type
datetime expiration; // Order expiration time (for the orders of ORDER_TIME_SPECIFIED type)
string comment; // Order comment
ulong position; // Position ticket
ulong position_by; // The ticket of an opposite position
};
كود PHP:struct MqlTradeRequest
{
ENUM_TRADE_REQUEST_ACTIONS action; // Trade operation type
ulong magic; // Expert Advisor ID (magic number)
ulong order; // Order ticket
string symbol; // Trade symbol
double volume; // Requested volume for a deal in lots
double price; // Price
double stoplimit; // StopLimit level of the order
double sl; // Stop Loss level of the order
double tp; // Take Profit level of the order
ulong deviation; // Maximal possible deviation from the requested price
ENUM_ORDER_TYPE type; // Order type
ENUM_ORDER_TYPE_FILLING type_filling; // Order execution type
ENUM_ORDER_TYPE_TIME type_time; // Order expiration type
datetime expiration; // Order expiration time (for the orders of ORDER_TIME_SPECIFIED type)
string comment; // Order comment
ulong position; // Position ticket
ulong position_by; // The ticket of an opposite position
};
- 21-06-2019, 11:16 PM #9625
السلام عليكم اخي اسامة..
كنت قد قلت لي اذكرك ، وبالفعل ذكرتك .. ولم نعد نسمع عنك شي.. طمنى عليك ،اتمنى ان تكون بخير.
- 30-06-2019, 02:25 AM #9626
اخواني المبرمجين
السلام عليكم
ارغب في ايجاد طريقة لجلب العملات الرقميه على برنامج الميتاستوك
ارجو منكم مساعدتي
- 02-07-2019, 05:12 PM #9627
هذا مثال مبسط
كود PHP:void drawTrend()
{
int start_bar=300;
double open=Open[start_bar];
double highest_high=0,lowest_low=99999999999999,last_peak=open;
for(int i=start_bar;i>0;i--)
{
if(High[i]>=highest_high)highest_high=High[i];
if(Low[i]<=lowest_low)lowest_low=Low[i];
if(highest_high-last_peak>=20*Point)
{
last_peak=highest_high;
highest_high=0;lowest_low=99999999999999;
if(highest_high>=open&&last_peak>=open){
Print("Up trend");
}
else if(highest_high>open&&last_peak<open){
Print("cross up trend");
}
else if(highest_high<=open &&last_peak<=open)
{
Print("reverse up trend");
}
}
if(last_peak-lowest_low>=20*Point)
{
last_peak=lowest_low;
highest_high=0;lowest_low=99999999999999;
if(lowest_low<=open&&last_peak<=open){
Print("down trend");
}
else if(lowest_low>open&&last_peak<open){
Print("cross down trend");
}
else if(lowest_low>=open &&last_peak>=open)
{
Print("reverse down trend");
}
}
}
}
- 02-07-2019, 07:25 PM #9628
وعليكم السلام ورحمة الله وبركاته
يمكنك إستخدام مكتبة إسمها MT4Orders
ستسهل لك وستستطيع إستخدام نفس الأوامر الموجوده في الميتاتريدر 4
راجع هذا الرابط
https://www.mql5.com/en/code/16006
- 10-07-2019, 01:59 PM #9629
previous weekly high&low
I need script to open buy order if the price goes from bellow to above low of previous week and vise versa for sell
- 11-07-2019, 11:18 AM #9630
السلام عليكم شكرا على مجهودكم القيم
اريد ان اعرف كيف اضيف كود للاكسبيرت يحسب عدد الصفقات الخاسرة وعدد الصفقات الرابحة المغلقة وعدد صفقات البيع وعدد صفقات الشراء المغلقة انا حاولت عمل اكسبيرت بسيط لكن لم استطع اضافة حساب عدد الصفقات ولا اعلم من اين ابدأ بحثت كثيراً حتى فى المنتديات الاجنبية ولم اصل الى شئ الكود بالاسفل وشكراً جزيلا
[CODE]كود:double ma1,ma2,ma3; ma1=iMA(NULL,0,15,0,MODE_SMA,PRICE_CLOSE,1); ma2=iMA(NULL,0,15,0,MODE_SMA,PRICE_CLOSE,2); ma3=iMA(NULL,0,30,0,MODE_SMA,PRICE_CLOSE,1); double Speed=MathAbs(ma3-Close[1])/Point; Comment(Speed); double Speed2=Speed+400; double SL,TP; if ( ma1>ma3&&Close[2]<ma2&&Close[1]>ma1 ){ SL=NormalizeDouble(Ask-Speed2*Point,Digits); TP=NormalizeDouble(Ask+Speed2/2*Point,Digits); OrderSend(Symbol(),OP_BUY,NormalizeDouble(Lot,2),A sk,3,SL,TP,"klk",MagicNumber,0,Blue);
المواضيع المتشابهه
-
موضوع مخصص للاكسبيرتات اللتي يستخدمها الاعضاء على الحقيقي,,عندك اكسبيرت ممتاز ضعه هنا
By محمد معمو in forum برمجة المؤشرات واكسبرتات التداول - Experts Advisor EAمشاركات: 11آخر مشاركة: 15-12-2023, 02:03 PM -
عااااااااااااجل ( موضوع مخصص للفرص الفورية)!!!
By عاشق الذبذبـة in forum توقعات وتوصيات سوق العملاتمشاركات: 280آخر مشاركة: 27-08-2009, 10:30 PM