Hi Team,
Please make EA to run Back test ...Its good EA!!!!!!!!!!!!!!111
Please make EA to run Back test ...Its good EA!!!!!!!!!!!!!!111
Attached File(s)
1
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
DislikedGood Day Master Coders, thank you for your help in this thread, sorry i have tried to crop this, i dont know the code to help manage space when posting code Please i am in need of a pending Script, and the one i find is not working properly (i mean to pend one order at a time) when i edit the parameters before applying to chart it wont work, when i apply the way it is, it will pend 3 orders i want to correct the buy/sell what should i change in the code to achieve( 1 pending order at a time with my desired parameters) i also appreciate if anyone...Ignored
#property show_inputs
//#property show_confirm
extern double Lots = 0.01;
extern int Slippage = 3;
extern int Stop_Loss = 200;
extern int Take_Profit = 30;
//global
double Poin;
//+------------------------------------------------------------------+
//| script "Open a new Buy Order" |
//+------------------------------------------------------------------+
int start(){
double Price = WindowPriceOnDropped();
bool result;
int slippage;
double Price1;
double take_profit1;
double stop_loss;
if (Point == 0.00001) Poin = 0.0001;
else if (Point == 0.001) Poin = 0.01;
else Poin = Point;
slippage = Slippage*Poin;
if(Ask < Price){
Price1=Price;
stop_loss = Price - Stop_Loss * Poin;
take_profit1 = Price1 + Take_Profit * Poin;
result = OrderSend(Symbol(),OP_BUYSTOP,Lots,Price1,slippage,stop_loss,take_profit1,"",0,0,CLR_NONE);
}
if(Ask > Price){
Price1=Price;
stop_loss = Price - Stop_Loss * Poin;
take_profit1 = Price1 + Take_Profit * Poin;
result = OrderSend(Symbol(),OP_BUYLIMIT,Lots,Price1,slippage,stop_loss,take_profit1,"",0,0,CLR_NONE);
}
//----
return(0);
}
//+------------------------------------------------------------------+ Disliked{quote} The Buy case: #property show_inputs //#property show_confirm extern double Lots = 0.01; extern int Slippage = 3; extern int Stop_Loss = 200; extern int Take_Profit = 30; //global double Poin; //+------------------------------------------------------------------+ //| script "Open a new Buy Order" | //+------------------------------------------------------------------+ int start(){ double Price = WindowPriceOnDropped(); bool result; int slippage; double Price1; double take_profit1; double stop_loss; if (Point == 0.00001) Poin = 0.0001; else...Ignored
Disliked{quote} Thanks so much Sir, it works ! am sorry i have additional situation, in the code theres buylimit, buystop, but when i apply to the chart it shows only buylimit, there was no option to change or choose if i want buystop, please can you help to seperate the code in two? so that i have two script (1 for buystop, and 1 for buylimit) i will try to do same with sellstop and sell limitsIgnored
Disliked{quote} Have you tried using Jagzfx multiplexer, VWAP is normal input, MA as filter input.Ignored
Disliked{quote} do you know the purpose of the script? It sets a pending order at the price in which you drop the program. The script decides what has to be done: Buy stop or buy limit. It depends on where you drop it.Ignored
Disliked{quote} No sure what you mean. Which part of the code do you need to understand?Ignored
Disliked{quote} eess, As we know, the MUX receive different signals (several inputs) but it has one output only like All agree, Majority Agree, etc, and unfortunately it does not help in this case since PIN One will be in charge to read the two buffers, one from the VWAP section and another from the Moving Average section, sending the cross signal to the MUX in order to go through the first filtration layer and later the MUX will send this cross signal to the EA to continue with the filtration process, validating this signal (if this signal is good), to...Ignored
Dislikedeess, Yes, I am convinced, I tried even with the new updated version of Pin ONE 1.04. Thank you very much!Ignored
Disliked{quote} ...the blue and red lines could adjust at the same time and length of the rect...text could be adjustable so that it can be placed in the middle or the right of the box. and if its possible. a hide/show button so we can make the box and the 3 lines and text invisible when we want...Ignored
Disliked...It works like tradingview's but it goes back to default when you navigate from one time frame to the other...Ignored