Breakout EA wanted - page 2

 
xxDavidxSxx:
here is one for news or low range breakout. It was in a thread befor.

I use it for news but works on breakout too. Just set use news to false.

Dave

Hi,

Can someone please help me to add some functionality to this ea.

All I would like it to be able to do is:

If no order has been triggered "x" minutes after event time then cancell both conditional orders.

Thanks in advance

 
kollas:
Hi,

Can someone please help me to add some functionality to this ea.

All I would like it to be able to do is:

If no order has been triggered "x" minutes after event time then cancell both conditional orders.

Thanks in advance

sorry.....that was in reference to the straddle trail on post 3

 

Reverse Breakout EA

I am trying to locate a breakout EA that will place a reverse order AFTER a retrace from a breakout. The trading plan:

*First, the current bar must equal or pass the previous bar (or however many bars designated) by "X" amount.

*Then a pending "reverse" order will be placed after the price has retraced a designated amount of pips.

*NOTE: This EA would buy/sell in the direction of the retrace, not the initial breakout. The D95 Reverse EA that is in FF would work fine if it had the retrace option.

Thanks for the help,

Elway

 

Breakout EA

i want to provide EA from russians coders TEAM for testing and searching for new ideas.

best pairs: G/U, G/J

settings:

//time interval for calculating the high/low of the channel:

//start time (hours/mins)

Time_start_hour = 8;

Time_start_minute = 0;

//time before start (hours/mins)

Time_build_hour = 15;

Time_build_minute = 10;

//how much time to trade, after pending orders are deleted

extern int Trade_time = 3;

//--------------------------------------------------------------------

//trading days of week

extern bool Monday = true;

extern bool Tuesday = true;

extern bool Wednesday = true;

extern bool Thursday = true;

extern bool Friday = true;

//--------------------------------------------------------------------

//set 1st pending orders true/fasle

extern bool First_line_orders = true;

// ho many pips from the high/low of channel

extern int First_line = 20;

//set 2nd pending orders true/fasle

extern bool Second_line_orders = true;

// ho many pips from the 1st pending order

extern int Second_line = 50;

//set 3nd pending orders true/fasle

extern bool Third_line_orders = true;

// ho many pips from the 2st pending order

//size of lot

extern double С_Order_volume = 0.1;

//--------------------------------------------------------------------

// setting of channel high/low limit

extern int Min_width = 50;

extern int Max_width = 150;

//--------------------------------------------------------------------

// SL in % of channel width

extern int C_SL = 30;

// minimum SL (if "C_SL" < "C_SL_min", than "C_SL_min" = SL)

extern int C_SL_min = 15;

//--------------------------------------------------------------------

//choice of fixed TakeProfit or Tralling TP

extern bool TP_fiks_or_tral = true;

//fixed TP in pips

extern int TP_fiks = 50;

//------------

// tralling SL

extern int SL_tral = 15;

// tralling step

extern int Tralling_Step = 3;

//take profit for tralling order (as protection from disconnect), if =0 then not used.

extern int TP_tral = 100;

//--------------------------------------------------------------------

//method of increase the lot if the price goes in the right direction (true/false)

extern bool Add_mech = false;

//starting from high/low of channel in pips

extern int Add_start_level = 10;

//step of opening orders

extern int Add_step = 10;

//size of lot

extern double Add_volume = 0.1;

//sl for these orders

extern int Add_sl = 20;

// possible number of orders (of 0 = without limit)

extern int Add_count_stages = 1;

// number in pips of the drawdown. (if drawdown is more, then close all the previous orders)

extern int Add_prosadka = 3;

//--------------------------------------------------------------------

// slippage for all orders

extern int C_Slippage = 3;

//--------------------------------------------------------------------

// attempt to cut off the false breakdowns

extern bool l1 = false;

//sl

extern int l1_SL = 4;

//--------------------------------------------------------------------

//different levels of takeprofit (true/false)

extern bool s1 = false;

//opening order after 10 pips from the channel

extern int s_l1 = 10;

extern int s_l1_sl = 1;

//opening order after 30 pips from the channel

extern int s_l2 = 30;

extern int s_l2_sl = 15; //пунктов от цены

//opening order after 50 pips from the channel

extern int s_l3 = 50;

extern int s_l3_sl = 35;

//opening order after 70 pips from the channel

extern int s_l4 = 70;

extern int s_l4_sl = 40;

//opening order after 120 pips from the channel

extern int s_l5 = 120;

extern int s_l5_sl = 100;

//--------------------------------------------------------------------

 

Looking to find a breakout EA

Can someone point me in the right direction to find a EA.....That will trade on a 1hr Tf , I can set a open and close trade time frame and with the ability to look back at several candles for a high/low...and have a trailing stop...

I hope Iam not asking to much, Iam sure I have seen a EA like this but I have searched both this forum and google so far Iam having trouble finding one...

Thanks

Glenn

 

SimplE Breakout EA Wanted

hi everyone,

i need some help to find breakout ea using breakout strategy,or someone can create simple ea for me.

the rule is simple, when price in the midle of previous low and hight, we open pending order buy stop or sell stop at the previous low and hignt. delete position that not open position..

sorry for my bad english

Files:
breakout.jpg  71 kb
 

Profitable EA: need help to make EA according my 6 months tested indicator

Hey

Help needed to make A Indicator into EA.

I have an Indicator with which I do the scalping manually but now I just want to make it an EA. I have tested this indicator for last 6 month for scalping n it gave me very exciting and good results. It is basically a london breakout strategy.

I have attached the Indicator here and I request you to build an EA which will open trade when it touches buy/sell levels according to current indicator and plz include take profit and stop loss levels.

your help would be highly Appreciated. Looking forward for your reply.

breakoutboxesv2.mq4

Files: