Dmf AI EA Robot

Dmf AI EA Robot

更新日期:2022-03-02分类标签: 语言:中文平台:没限制

98 人已下载 手机查看

Dmf AI EA Robot

//+——————————————————————+
//| DMF AI Robot.mq4 |
//| Copyright 2021, ITace Inc. (Marve)Software Corp. |
//| https://www.ITace.com |
//+——————————————————————+
#property copyright “Copyright 2021, ITace Inc. (Marve)Software Corp.”
#property link “https://www.ITace.com”
#property version “1.00”
#property strict
input string TradingBetween = “1:31-23:30″;
input double SL= 0.5;
input double TP= 0.5;
input double TND= 50;
input double LotSize= 0.2;
input double SLS= 0.2;
input double SSL=1;
input double STP=0.5;
input double CLS=0.2;
input double CTP=0.5;
input double CSL=0.5;
input double ElapsedSECONDS = 1*60;
extern double MaxDailyProfit = 200;
extern double MaxDailyLoss = -200;
void OnTick()
{
bool validTime = isValidTime2Trade(TradingBetween);
double ask = MarketInfo(Symbol(), MODE_ASK),bid = MarketInfo(Symbol(), MODE_BID);
double iHi = iHigh(Symbol(), PERIOD_M1, 0);
double iLo = iLow(Symbol(), PERIOD_M1, 0);
bool SEL_condition = ask<iHi+TND;
bool BUY_condition = ask<iHi+TND;
int ticket0, ticket2, ticket1,OrdrTotal = OrdersTotal();
bool Done4Today = Calc_Today_Closed_Profits(_Symbol)+Calc_OpenOrders_Profits(_Symbol)>MaxDailyProfit;
bool close4loss = Calc_Today_Closed_Profits(_Symbol)+Calc_OpenOrders_Profits(_Symbol)<MaxDailyLoss;
if(Done4Today==true)CloseAllOpenPoss(_Symbol);
if(Done4Today==false && OrdrTotal<1 && validTime==true)
{
if(CheckMoneyForTrade(Symbol(),OP_SELL, LotSize))
ticket0=OrderSend(Symbol(),OP_SELL, LotSize, NormalizeDouble(bid,Digits),0,NormalizeDouble(bid+SL,Digits),NormalizeDouble(bid-TP,Digits),”Order0″,2000,0,clrRed);
if(CheckMoneyForTrade(Symbol(),OP_BUY, SLS))
ticket2=OrderSend(Symbol(),OP_BUY,SLS, NormalizeDouble(ask,Digits),0,NormalizeDouble(ask-SSL,Digits),NormalizeDouble(ask+STP,Digits),”Order0”,2000,0,clrGreen);
}
if(Done4Today==false && OrdrTotal==1 && OrderSelect(SELECT_BY_POS,MODE_TRADES))
{
if(OrderMagicNumber()==2000 && OrderSymbol()==_Symbol)
{
long ElapsSec = MathMin(MinOrdOpElaps(_Symbol),MinOrdClElaps(_Symbol));
bool LastClosedByLoss = LastOrdClosedByLoss(_Symbol);
if(LastClosedByLoss)Print(“LastClosedByLoss!!!”);
if((OrderType()==OP_BUY) && validTime==true)
{
if(ElapsSec>ElapsedSECONDS&&CheckMoneyForTrade(_Symbol,OP_SELL, CLS))
{
Print(” OrderSend… “,” ElapsSec:”,ElapsSec,” ElapsedSECONDS:”,ElapsedSECONDS);
ticket1=OrderSend(_Symbol,OP_SELL,CLS, NormalizeDouble(bid,Digits),0,NormalizeDouble(bid+CSL,Digits),NormalizeDouble(bid-CTP,Digits),”Order1″,2000,0,clrRed);
}
else
{
//Print(” waiting4Order1… ElapsSec:”,ElapsSec);
}
}
if((OrderType()==OP_SELL) &&validTime==true)
{
if(ElapsSec>ElapsedSECONDS&&CheckMoneyForTrade(_Symbol,OP_BUY, CLS))
{
Print(” OrderSend… “,” ElapsSec:”,ElapsSec,” ElapsedSECONDS:”,ElapsedSECONDS);
ticket1=OrderSend(_Symbol,OP_BUY,CLS, NormalizeDouble(ask,Digits),0,NormalizeDouble(ask-CSL,Digits),NormalizeDouble(ask+CTP,Digits),”Order1″,2000,0,clrGreen);
}
else
{
//Print(” waiting4Order1… ElapsSec:”,ElapsSec);
}
}
}

}
}
//+——————————————————————+
long MinOrdOpElaps(string symb)
{
long dif=1e+16;
for(int o=0; o<OrdersTotal(); o++)
{
if(OrderSelect(o,SELECT_BY_POS,MODE_TRADES))
{
if(OrderSymbol()==symb)
{
if(TimeCurrent()-OrderOpenTime()<dif)
dif=TimeCurrent()-OrderOpenTime();
}
}
}
return(dif);
}
//+——————————————————————+
long MinOrdClElaps(string symb)
{
long dif=1e+16;
int o = OrdersHistoryTotal(),a = OrdersHistoryTotal() – 10,b = OrdersHistoryTotal();
for(o = a; o < b ; o++)
{
if(OrderSelect(o,SELECT_BY_POS,MODE_HISTORY))
{
if(OrderSymbol()==symb)
{
if(TimeCurrent()-OrderOpenTime() <dif)
dif=TimeCurrent()-OrderOpenTime();
if(TimeCurrent()-OrderCloseTime()<dif)
dif=TimeCurrent()-OrderCloseTime();
}
}
}
return(dif);
}
//+——————————————————————+
bool LastOrdClosedByLoss(string symb)
{
bool ClosedByLoss=false;
static datetime lastOrderCloseTime;
int o = OrdersHistoryTotal(),a = OrdersHistoryTotal() – 10,b = OrdersHistoryTotal();
for(o = a; o < b ; o++)
{
if(OrderSelect(OrdersHistoryTotal()-1,SELECT_BY_POS,MODE_HISTORY))
{
if(OrderSymbol()==symb && OrderCloseTime()> lastOrderCloseTime)
{
lastOrderCloseTime = OrderCloseTime();
ClosedByLoss = MathAbs(OrderClosePrice()-OrderStopLoss()) < MathAbs(OrderClosePrice()-OrderTakeProfit()) ;
}
}
}
return(ClosedByLoss);
}
//+——————————————————————+
#define HR2400 86400
#define SECONDS uint
SECONDS time(datetime when=0) {return SECONDS(when == 0 ? TimeCurrent() : when) % HR2400; }
//+——————————————————————+
//| |
//+——————————————————————+
datetime date(datetime when=0) {return datetime((when == 0 ? TimeCurrent() : when) – time(when)); }
bool isValidTime(SECONDS t0, SECONDS t1, datetime when=0) {SECONDS now = time(when); return t0 < t1 ? t0 <= now && now < t1 : !isValidTime(t1, t0, when);}
//+——————————————————————+
//| |
//+——————————————————————+
void TradingTimeSplit(string str,int &t0,int&t1)
{
string res[];
StringSplit(str,StringGetCharacter(“-“,0),res);
string T0=res[0],T1=res[1];
int H0,M0,H1,M1;
ArrayFree(res);
StringSplit(T0,StringGetCharacter(“:”,0),res);
H0=StrToInteger(res[0]);
M0=StrToInteger(res[1]);
t0=H0*60*60+M0*60;
ArrayFree(res);
StringSplit(T1,StringGetCharacter(“:”,0),res);
H1=StrToInteger(res[0]);
M1=StrToInteger(res[1]);
t1=H1*60*60+M1*60;
}
//+——————————————————————+
//| |
//+——————————————————————+
bool isValidTime2Trade(string str)
{
int t0,t1;
TradingTimeSplit(str,t0,t1);
return(isValidTime(t0,t1));
}
//+——————————————————————+
double Calc_Today_Closed_Profits(string symb)
{
double PNL= 0; for( int cnt = 0; cnt <= OrdersHistoryTotal(); cnt++)
if ( OrderSelect( cnt, SELECT_BY_POS, MODE_HISTORY ) )
if( OrderSymbol()==symb && OrderType() < 2 && iTime(symb, PERIOD_D1,0) <= OrderCloseTime() )
PNL += OrderProfit() + OrderSwap() + OrderCommission();
return(PNL);
}
//+——————————————————————+
double Calc_OpenOrders_Profits(string symb)
{
double profit=0;
for(int o=0; o<OrdersTotal(); o++)
{
if(OrderSelect(o,SELECT_BY_POS,MODE_TRADES))
{
if(OrderSymbol()==symb)
{
profit+=OrderProfit();
}
}
}
return(profit);
}
//+——————————————————————+
void CloseAllOpenPoss(string symb)
{
int total = OrdersTotal();
for(int i=total-1;i>=0;i–)
{
if(OrderSelect(i,SELECT_BY_POS) && OrderSymbol()==symb)
{
bool result = false;
switch(OrderType())
{
case OP_BUY : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_BID), 5, Red );break;
case OP_SELL : result = OrderClose( OrderTicket(), OrderLots(), MarketInfo(OrderSymbol(), MODE_ASK), 5, Red );break;
}
if(result == false)Sleep(3000);
}
}
}
bool CheckMoneyForTrade(string symb,int type,double lots)
{
double free_margin=AccountFreeMarginCheck(symb,type,lots);
if(free_margin> 0)
return(true);
return (false);

}

如果你对文件有了解,请帮助投票!

If you are familiar with the file, please help vote!

平均评分 0 / 5. 投票数: 0

到目前为止还没有投票!成为第一位投票人。

相关资源

2 条评论

  • zerouali 投稿者

    Please update link
    thank you

    美国加利福尼亚州圣何塞
    回复
    • admin

      Hello, the download link has been updated.

      新加坡
      回复