Have a question? Ask EA Help X
If there’s still a problem after you’ve tried everything and you have another device you can use, install the app on it and see if you have the same problem. Still having problems? The best way to contact us for help with mobile games is by creating an in-game ticket. This sends...
在变量“Open Average orders via Panel/通过面板打开平均订单”的输入设置中,可以调整使用面板打开的订单类型。您可以使用面板选择将打开的订单类型:顾问将恢复的订单或平均订单。 如果使用面板打开一个平均订单,则 EA 将把它视为第一个平均订单,并将在必要时增加它的网格。此外,此订单及其后续订单将被 EA 用于部分...
SignalPre))32returntrue;33}3435returnfalse;36}3738bool CheckForGold(doubleMacdCurrent,doubleMacdPrevious,doubleSignalCurrent,doubleSignalPrevious)39{40if(MacdCurrent<0 && MacdCurrent>SignalCurrent && MacdPrevious<SignalPrevious &&41MathAbs(MacdCurrent)>(MACDOpenLevel*Point))42{43Print("在0轴下的金叉"...
// 对某一价格来说至少不差于指定的交易量mrequest.deviation=100;// 滑点OrderSend(mrequest,mresult);if(mresult.retcode==10009|| mresult.retcode==10008)// 请求完成或者成功下单{Alert("A buy order has been placed, ticket #:",mresult.order); ...
15、int*TrailingStop)OrderModify(OrderTicket(),OrderOpenPrice(),Bid-Point*TrailingStop,OrderTakeProfit(),0,Green);return(0);这段代码就是多单的移动止损部分,当参数 TrailingStop 大于 0 的时候 EA 就开启了移动止损功能(默认设定是 30,也就是说默认情况下是开启移动止损的),我们就用我们这个例子 EA 的...
if(Open[1]ma) OrderClose(OrderTicket(),OrderLots(),Ask,3,White);); //如果第1根K线开盘价上穿均线时(即开盘价低于均价而收盘价高于均价时), 则进行空头平仓(仓单编号,持仓数量,卖价,滑点=3,用白色箭头显示) break;//跳出循环 } } //--- }...
Which day of the week is the cheapest day to buy a plane ticket to La Petrolea? You can generally find cheap flights to La Petrolea on a Sunday. You can save about 8% on average compared to booking on a Friday, which is typically the most expensive day to purchase tickets.**Best ...
手动开仓 适用于任何时间范围,我们建议在不低于 M15 的时间范围内工作 包括通过更高时间框架或长期指标过滤趋势的功能 可以选择使用平均 输入设置: MAIN SETTINGS Success Rate - The success rate for opening an order. First order on new signal only - Ability to choose to open new orders only when a ...
if(ticket>0) { if(OrderSelect(ticket,SELECT_BY_TICKET,MODE_TRADES)) Print("BUY order opened : ",OrderOpenPrice()); } else Print("Error opening BUY order : ",GetLastError()); return(0); } 上面这段就是多单开仓部分了,条件是这样:如果当前MACD主线在0轴以下,MACD“金叉”,MACD的主线不在0...