Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #21 (permalink)  
Old 08-28-2006, 11:11 AM
Senior Member
 
Join Date: Jul 2006
Posts: 131
sentaco is on a distinguished road
Hi holyguy can u please add some option in V1a like in V1c Maxopenorders or Maxtrades....? there is no one
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
  #22 (permalink)  
Old 08-29-2006, 03:42 AM
Senior Member
 
Join Date: Jul 2006
Posts: 131
sentaco is on a distinguished road
Quote:
Originally Posted by sentaco
Hi holyguy can u please add some option in V1a like in V1c Maxopenorders or Maxtrades....? there is no one
PLs some do this
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
  #23 (permalink)  
Old 08-29-2006, 05:36 AM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 502
holyguy7 is on a distinguished road
Quote:
Originally Posted by sentaco
Hi holyguy can u please add some option in V1a like in V1c Maxopenorders or Maxtrades....? there is no one
Here you go. I hope this helps.
Attached Files
File Type: mq4 Firebird_v1-0c1.mq4 (29.7 KB, 283 views)

Last edited by holyguy7; 08-29-2006 at 10:23 AM.
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
  #24 (permalink)  
Old 08-29-2006, 09:26 AM
TheWicker's Avatar
Member
 
Join Date: Apr 2006
Posts: 49
TheWicker is on a distinguished road
Quote:
Originally Posted by holyguy7
Here you go. I hope this helps.
I can not compile it, editor finds 4 errors.
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
  #25 (permalink)  
Old 08-29-2006, 10:24 AM
holyguy7's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 502
holyguy7 is on a distinguished road
Quote:
Originally Posted by TheWicker
I can not compile it, editor finds 4 errors.
Opps, sorry about that. Go ahead and try to redownload again. Should work now. Also updated on post 1 as well.
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
  #26 (permalink)  
Old 08-29-2006, 12:21 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
Hi!

New to firebird but why not begin to trade with a "trailing start" on pending limit orders?
if market hits your limit order but still go against you, firebird will act as now with multiple orders (just maybe better started). It's just to implement trailing on entry and exit.
To keep the same trading volume we can adjust Lots to the strength of the gap between MA_limit and price relatively to PipStep.

Those are just thoughts, any advice?

Jojo
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
  #27 (permalink)  
Old 08-29-2006, 12:23 PM
Senior Member
 
Join Date: Jul 2006
Posts: 131
sentaco is on a distinguished road
Quote:
Originally Posted by holyguy7
Here you go. I hope this helps.
Thx holyguy
But the TakeProfit option DONT work. I have changed it to 3 pips but still making orders with TP 22 pips...
I think u have to edit V1a to can make Maxorders... Maxopenorders...
PLs fix that

Last edited by sentaco; 08-29-2006 at 12:35 PM.
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
  #28 (permalink)  
Old 08-29-2006, 03:42 PM
Member
 
Join Date: Oct 2005
Posts: 84
forex4syg is on a distinguished road
Quote:
Originally Posted by sentaco
Thx holyguy
But the TakeProfit option DONT work. I have changed it to 3 pips but still making orders with TP 22 pips...
I think u have to edit V1a to can make Maxorders... Maxopenorders...
PLs fix that
The TakeProfit in the version c is overwritten by following code:

double value = iATR(NULL,PERIOD_D1,21,0);
if(Point == 0.01) value = value*100;
if(Point == 0.0001) value = value*10000;
TakeProfit = value*2/10;
Stoploss = value*2;
PipStep = value/10;

So you could not specify it.

Furthermore, it was found that the daily average true range iATR sometimes (or often) returns value of 0. But I do not understand why its value could be zero. I saw such problem from both IBFX and NF. This will cause a failure in OrderSend. You may see there may be no trades when it should be. No error will be reported unless you add error checking code to the FB.

To avoid this problem, following change may be made:
if (value != 0 )
{
TakeProfit = value*2/10;
Stoploss = value*2;
PipStep = value/10;

}
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
  #29 (permalink)  
Old 08-29-2006, 04:35 PM
Senior Member
 
Join Date: Jan 2006
Posts: 272
haubentaucher is on a distinguished road
Quote:
Originally Posted by sentaco
Hi here is my first statement with this new EA in 1 day. It looks good think about to use it in Real account....

/edit: wrong statement posted. fixxed!
Hello `Ich bin 12` ,

do you have a new statement? Will post my in the evening

haubentaucher
-ich bin 42-
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
  #30 (permalink)  
Old 08-29-2006, 05:11 PM
Junior Member
 
Join Date: Aug 2006
Location: Dallas, TX
Posts: 6
AltF4 is on a distinguished road
Thumbs up Forward testing for one week

I have been forward testing this EA for about 1 week with good results using TF of 1 min on 6 pairs.

This has been the original vC that was posted.

29.08.2006.htm
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
firebird, firebird EA, multilotscalper, Firebird v1.0c, firebird v1-0c1, firebird EA forex, firebird traderseven, Firebird v0.63g


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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
Firebird EA holyguy7 Expert Advisors - Metatrader 4 155 09-11-2009 09:39 PM
Firebird forexts Expert Advisors - Metatrader 4 29 02-16-2008 08:12 AM
Firebird sgoloubev Post and compare Trades 7 10-05-2005 10:25 PM


All times are GMT. The time now is 02:46 PM.



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