Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4






Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
Thread Tools Display Modes
  #11 (permalink)  
Old 07-04-2008, 11:14 AM
jorgeng's Avatar
Member
 
Join Date: Nov 2005
Posts: 64
jorgeng is on a distinguished road
Manual order put in, se screenshot:
Attached Images
File Type: jpg manual-tsd.jpg (56.6 KB, 563 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 01-06-2009, 02:04 AM
Junior Member
 
Join Date: Dec 2008
Posts: 4
kollas is on a distinguished road
Quote:
Originally Posted by xxDavidxSxx View Post
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 01-06-2009, 02:05 AM
Junior Member
 
Join Date: Dec 2008
Posts: 4
kollas is on a distinguished road
Quote:
Originally Posted by kollas View Post
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #14 (permalink)  
Old 02-13-2009, 07:17 AM
Junior Member
 
Join Date: May 2007
Posts: 2
elway is on a distinguished road
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #15 (permalink)  
Old 09-12-2009, 05:18 PM
Junior Member
 
Join Date: Mar 2009
Posts: 1
kraspay is on a distinguished road
Arrow 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;
//--------------------------------------------------------------------
Attached Images
File Type: jpg report.jpg (139.0 KB, 68 views)
Attached Files
File Type: set breakout_tralling_on.set (2.2 KB, 23 views)
File Type: ex4 breakout_v1_5(cashteam).ex4 (30.3 KB, 32 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
breakout, breakout ea, daily breakout ea, ea breakout, range breakout ea, Straddle_trail

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Schaff trend cycle ttt123 Metatrader 4 95 07-02-2009 03:35 AM
Help! MA on Indicator wanted Tickwatcher Indicators - Metatrader 4 8 01-13-2008 03:25 AM
Teacher wanted...... Herzklopfen General Discussion 6 02-10-2007 09:17 PM
Coding Example wanted et_phonehome_2 Metatrader 4 1 11-08-2006 10:15 AM
Just wanted to say... shippy General Discussion 1 01-24-2006 04:03 AM


All times are GMT. The time now is 03:54 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.