الموضوع: الاخ MOVING _AVERAGE
عرض مشاركة واحدة
قديم 29-01-2013, 04:15 PM   المشاركة رقم: 3
الكاتب
The_Mask
عضو جديد

البيانات
تاريخ التسجيل: Nov 2011
رقم العضوية: 6643
العمر: 35
المشاركات: 11
بمعدل : 0.00 يوميا

الإتصالات
الحالة:
The_Mask غير متواجد حالياً
وسائل الإتصال:

كاتب الموضوع : The_Mask المنتدى : منتدى المؤشرات و الاكسبيرتات
افتراضي رد: الاخ MOVING_AVERAGE

شكرا لتكرمك الرد
بالنسبة للاكسبرت مكتمل طبعا
[PHP]
extern string MM_Parameters = " Money Management";
extern double Lots = 1;
extern bool UseMoneyManagement = TRUE;
extern int RiskPercent = 80;

extern string S5=" Order Management";
extern int TakeProfit=100;

extern int StopLoss=400;

datetime Time0;

double digits,point;
extern int MagicNumber=3030;
int init()
{
if((Digits==5) || (Digits==3)) digits=Digits;
if((Point==0.001) || (Point==0.00001)) point=Point;
return(0);

}


//+------------------------------------------------------------------+
//| FUNCTION DEFINITIONS deinitialization function |
//+------------------------------------------------------------------+

void deinit() {
Comment("SAeed");
}

int orderscnt(int type){
int cnt=0;
for(int i =0;i<OrdersTotal();i++){
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)){
if(OrderSymbol()==Symbol() && MagicNumber==OrderMagicNumber()&&OrderType()==type ){
cnt++;
}
}
}
return(cnt);
}


//+------------------------------------------------------------------+
//| FUNCTION DEFINITIONS Start function |
//+------------------------------------------------------------------+
int start()
{

double SL,TP;


if(UseMoneyManagement) Lots = LotManage();

////////////////// Buy//////////////

if (Open[2]<Close[2]&&(Close[2]-Open[2])/point>310&&Open[1]<Close[1]&&Time0!=Time[0]){


if(orderscnt(OP_BUY)+orderscnt(OP_SELL)<1){
if(StopLoss==0){SL=0;}else{SL=Ask-StopLoss*point;}
if(TakeProfit==0){TP=0;}else{TP=Ask+TakeProfit*poi nt;}
OrderSend(Symbol(),OP_BUY,Lots,NormalizeDouble(Ask ,digits),3*digits,SL,TP,"EA",MagicNumber,0,Blue);
Time0=Time[0];
}
}


///////////////////// Sell////////////////////////

if (Open[2]>Close[2]&&(Open[2]-Close[2])/point>310&&Open[1]>Close[1]&&Time0!=Time[0]){

if(orderscnt(OP_BUY)+orderscnt(OP_SELL)<1){
if(StopLoss==0){SL=0;}else{SL=Bid+StopLoss*point;}
if(TakeProfit==0){TP=0;}else{TP=Bid-TakeProfit*point;}
OrderSend(Symbol(),OP_SELL,Lots,NormalizeDouble(Bi d,digits),3*digits,SL,TP," EA",MagicNumber,0,Red);
Time0=Time[0];
}
}
}


///////////////////////////////////////////////////////////////////////////////////////////////////////
double LotManage()
{
double lot = MathCeil(AccountFreeMargin() * RiskPercent / 1000) / 100;

if(lot<MarketInfo(Symbol(),MODE_MINLOT))lot=Market Info(Symbol(),MODE_MINLOT);
if(lot>MarketInfo(Symbol(),MODE_MAXLOT))lot=Market Info(Symbol(),MODE_MAXLOT);


return (lot);
}



[/PHP]

مثل ما ذكرت لحظرتك الاكسبرت شغال فقط
احيانا يتوفر الشرط لكن لا يدخل باي امر
وخاصة في شموع معينة والتي تكون اكبر من الشرط بكثير




عرض البوم صور The_Mask  
رد مع اقتباس
  #3  
قديم 29-01-2013, 04:15 PM
The_Mask The_Mask غير متواجد حالياً
عضو جديد
افتراضي رد: الاخ MOVING_AVERAGE

شكرا لتكرمك الرد
بالنسبة للاكسبرت مكتمل طبعا
[PHP]
extern string MM_Parameters = " Money Management";
extern double Lots = 1;
extern bool UseMoneyManagement = TRUE;
extern int RiskPercent = 80;

extern string S5=" Order Management";
extern int TakeProfit=100;

extern int StopLoss=400;

datetime Time0;

double digits,point;
extern int MagicNumber=3030;
int init()
{
if((Digits==5) || (Digits==3)) digits=Digits;
if((Point==0.001) || (Point==0.00001)) point=Point;
return(0);

}


//+------------------------------------------------------------------+
//| FUNCTION DEFINITIONS deinitialization function |
//+------------------------------------------------------------------+

void deinit() {
Comment("SAeed");
}

int orderscnt(int type){
int cnt=0;
for(int i =0;i<OrdersTotal();i++){
if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)){
if(OrderSymbol()==Symbol() && MagicNumber==OrderMagicNumber()&&OrderType()==type ){
cnt++;
}
}
}
return(cnt);
}


//+------------------------------------------------------------------+
//| FUNCTION DEFINITIONS Start function |
//+------------------------------------------------------------------+
int start()
{

double SL,TP;


if(UseMoneyManagement) Lots = LotManage();

////////////////// Buy//////////////

if (Open[2]<Close[2]&&(Close[2]-Open[2])/point>310&&Open[1]<Close[1]&&Time0!=Time[0]){


if(orderscnt(OP_BUY)+orderscnt(OP_SELL)<1){
if(StopLoss==0){SL=0;}else{SL=Ask-StopLoss*point;}
if(TakeProfit==0){TP=0;}else{TP=Ask+TakeProfit*poi nt;}
OrderSend(Symbol(),OP_BUY,Lots,NormalizeDouble(Ask ,digits),3*digits,SL,TP,"EA",MagicNumber,0,Blue);
Time0=Time[0];
}
}


///////////////////// Sell////////////////////////

if (Open[2]>Close[2]&&(Open[2]-Close[2])/point>310&&Open[1]>Close[1]&&Time0!=Time[0]){

if(orderscnt(OP_BUY)+orderscnt(OP_SELL)<1){
if(StopLoss==0){SL=0;}else{SL=Bid+StopLoss*point;}
if(TakeProfit==0){TP=0;}else{TP=Bid-TakeProfit*point;}
OrderSend(Symbol(),OP_SELL,Lots,NormalizeDouble(Bi d,digits),3*digits,SL,TP," EA",MagicNumber,0,Red);
Time0=Time[0];
}
}
}


///////////////////////////////////////////////////////////////////////////////////////////////////////
double LotManage()
{
double lot = MathCeil(AccountFreeMargin() * RiskPercent / 1000) / 100;

if(lot<MarketInfo(Symbol(),MODE_MINLOT))lot=Market Info(Symbol(),MODE_MINLOT);
if(lot>MarketInfo(Symbol(),MODE_MAXLOT))lot=Market Info(Symbol(),MODE_MAXLOT);


return (lot);
}



[/PHP]

مثل ما ذكرت لحظرتك الاكسبرت شغال فقط
احيانا يتوفر الشرط لكن لا يدخل باي امر
وخاصة في شموع معينة والتي تكون اكبر من الشرط بكثير






رد مع اقتباس