DislikedI am looking for an EA or script , which can close all or 2/10 open chart at a time.my humble request to all master coders please look into it....thanksIgnored
Attached File(s)
TSLA: 30-Dec-22 123.18 // 16-Jun-23 260.54 **111.51%**
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedI am looking for an EA or script , which can close all or 2/10 open chart at a time.my humble request to all master coders please look into it....thanksIgnored
Disliked{quote} The scripts creates pending orders. Proof:{image}Check:{image}{image}If above off check:{image}Also:{image} The scripts do not warn if auto trading or live trading is off but does place pending orders. Depending on time I will add code to warn if an auto trading or live trading is off.Ignored
Disliked{quote} OMG! Thank you sooo much, you are a god send! Greatly appreciated :-)Ignored
Dislikedhell all, i'm looking for ClloseAll_AllSymbols_Profit.mq4 script. please share you have one.Ignored
DislikedIgnored
Disliked{quote} I'm sorry sir! I've put it in the wrong folder. I .......I also want a sequence of buy stop and sell stop with a distance between them is 100. perhaps by 5 sequential buy stop and sell stop as I described earlier. For a moment I'm going to use it first, and if I feel that it is less suitable I will try to get help again. Thank you sir! You are genius!Ignored
Disliked{quote} Scripts - as on file - may be of use {file} {file} {file} {file} {file}Ignored
Disliked{quote} Please stop this - You are genius! Added another level to scripts. Confirm if correct and I will provide instructions how to code additional levels. {image}check 120.100 ------------------------------ TP2 120.000 --------------------TP1-------BS2 119.900 --------------------BS1-------SL2 119.800 --Open Price ---SL1 {image}check 119.814 --Open Price----SL1 119.714 --------------------SS1-------SL2 119.614 --------------------TP1-------SS2 119.514 --------------------------------TP2 {file} {file}Ignored
Disliked{quote} thanks a lot for your time and effort.Actually i am looking for EA/script close all open chart not order /tradeIgnored
DislikedGuys I have searched everywhere for a simple EA that has BE, TS, SL and TP for controlling ALL open orders. I have tried the Multi Purpose Trade Manager from SteveHopwood but it is not compatable with the current mt4 build. PLease can anyone give me direction Thanks a lotIgnored
Disliked{quote} Yes it's correct. I'm sorry if the request is too much, and you may feel a little distracted.Ignored
double BS_distance_L1 = Ask+Buy_Stop_Distance*point;
double BS_distance_L2 = Ask+Buy_Stop_Distance*point*2;
double BS_distance_L3 = Ask+Buy_Stop_Distance*point*3;
double BS_distance_L4 = Ask+Buy_Stop_Distance*point*4;
double BS_distance_L5 = Ask+Buy_Stop_Distance*point*5;
while(true)
{
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L1,Slippage,BS_distance_L1-StopLoss*point,BS_distance_L1+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP LEVEL 1
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L2,Slippage,BS_distance_L2-StopLoss*point,BS_distance_L2+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 2
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L3,Slippage,BS_distance_L3-StopLoss*point,BS_distance_L3+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 3
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L4,Slippage,BS_distance_L4-StopLoss*point,BS_distance_L4+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 4
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L5,Slippage,BS_distance_L5-StopLoss*point,BS_distance_L5+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 5 double BS_distance_L1 = Ask+Buy_Stop_Distance*point;
double BS_distance_L2 = Ask+Buy_Stop_Distance*point*2;
double BS_distance_L3 = Ask+Buy_Stop_Distance*point*3;
double BS_distance_L4 = Ask+Buy_Stop_Distance*point*4;
//double BS_distance_L5 = Ask+Buy_Stop_Distance*point*5;
while(true)
{
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L1,Slippage,BS_distance_L1-StopLoss*point,BS_distance_L1+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP LEVEL 1
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L2,Slippage,BS_distance_L2-StopLoss*point,BS_distance_L2+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 2
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L3,Slippage,BS_distance_L3-StopLoss*point,BS_distance_L3+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 3
ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L4,Slippage,BS_distance_L4-StopLoss*point,BS_distance_L4+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 4
//ticket=OrderSend(Symbol(),OP_BUYSTOP,Lots,BS_distance_L5,Slippage,BS_distance_L5-StopLoss*point,BS_distance_L5+ TakeProfit*Point,NULL,16384,0,clrNONE); // BUYSTOP Level 5 Disliked{quote} Short testing shows chart/s closed & trades remaining open. No code to close trades included but always good to check against unforeseen mishaps. Test demo. {file} {file}Ignored