[MT4-EA]平仓函数选不中该平的单子
在持有多个单子时候,平仓函数选的都是第一个单,而选不中开仓函数的那个单子,求高手解答
开仓函数:
//---------------开仓-------------------- void MYOpen() { double MAN; int res; //--- buy conditions if (Close[0]>MAN) { res=OrderSend(Symbol(), OP_BUY, slotA, Ask, 3, 0, 0, "Order Buy", MAGICMA, 0, Red); PlaySound("2open"); return; } }
平仓函数:
void YingOrLoseClose() { double MAN; bool yingB=false; bool yingBB=false; //+--------------- for(int i=0;iGetOrderOpenPriceHolding()+YPOINT) //止盈
{
yingB=OrderClose(OrderTicket(),slotB,Bid,3,White);
if(yingB==true)
{
PlaySound("2ying");
}
if(yingB==False)
{
Print("OrderClose error ",GetLastError());
}
}
if(Close[0]
//---------------开仓-------------------- void MYOpen() { double MAN; int res; //--- buy conditions if (Close[0]>MAN) { res=OrderSend(Symbol(), OP_BUY, slotA, Ask, 3, 0, 0, "Order Buy", MAGICMA, 0, Red); PlaySound("2open"); return; } }
平仓函数:
void YingOrLoseClose() { double MAN; bool yingB=false; bool yingBB=false; //+--------------- for(int i=0;i
发表于:2015-09-14 10:16只看该作者
2楼
我也想知道呢~~~等高手出現
韬客社区www.talkfx.co
发表于:2015-09-14 11:13只看该作者
3楼
感谢分享
发表于:2015-09-28 08:45只看该作者
4楼
學習拉
韬客社区www.talkfx.co
发表于:2015-09-28 08:47只看该作者
5楼
謝謝
韬客社区www.talkfx.co