Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4 > Expert Advisors - Metatrader 3
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
  #71 (permalink)  
Old 05-06-2006, 12:13 PM
Member
 
Join Date: Mar 2006
Posts: 85
yass is on a distinguished road
victory file

Take a look at this
Hello cockeyedcowboy
The file for victory5 is only html ??

Last edited by yass; 10-09-2006 at 03:58 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
  #72 (permalink)  
Old 05-06-2006, 12:51 PM
leeb's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 368
leeb is on a distinguished road
ZigZag indicator to Easylanguage

Is the GoldWarrior / ZigZag code stable now ? is anyone getting consistent results ? Thanks

Last edited by leeb; 05-07-2006 at 11:45 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
  #73 (permalink)  
Old 10-05-2006, 08:19 AM
Junior Member
 
Join Date: Jul 2006
Posts: 5
hccgtim is on a distinguished road
help

I want to try the fractal ea but it won't load
can you help
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
  #74 (permalink)  
Old 09-04-2007, 06:27 AM
Senior Member
 
Join Date: May 2007
Posts: 105
TickJob is on a distinguished road
could some one kind enough to explain the logic behind GoldWarrior?
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
  #75 (permalink)  
Old 09-04-2007, 09:38 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by TickJob View Post
could some one kind enough to explain the logic behind GoldWarrior?
Sorry I am not a coder but as i understand this EA is using the following.

Indicators: DayImpuls as custom indicator, zigzag as custom indicator and CCI as standard indicator.

Sell signal:

Code:
if ((ZZ3>0.01 || ZZ2>0.01) && ((cci0<cci1 && cci1>50 && cci0>30 && nimp<0 && imp>0) || 
      (cci0>200 && cci1>cci0 && nimp>100 && imp>nimp))) {
You may understand it by yourself:
|| = or
&& = and
ZZ3 is value if zigzag for last bar
ZZ2 is value of zigzag for current bar
cci0 is
Code:
cci0=iCCI(NULL,0,per,PRICE_CLOSE,0);
= CCI value on close price
cci1 is cci1=iCCI(NULL,0,per,PRICE_CLOSE,1); = CCI value on previous bar close price
nimp = value of DayImpuls for current bar
imp = value of DayImpuls for previous bar

Code:
imp=iCustom(NULL,0,"DayImpuls",per,d,0,1);
   if (imp>10000) imp=0;
   nimp=iCustom(NULL,0,"DayImpuls",per,d,0,0);
   if (nimp>10000) nimp=0;
   ZZ3=iCustom(NULL,0,"ZigZag",depth,deviation,backstep,0,1);
   ZZ2=iCustom(NULL,0,"ZigZag",depth,deviation,backstep,0,0);
   cci1=iCCI(NULL,0,per,PRICE_CLOSE,1);
   cci0=iCCI(NULL,0,per,PRICE_CLOSE,0);
Besides this EA is slightly martingaled: if some open order is falling up to some negative points so the other order will be opened in opposite direction with increased lot size 9i am testing as first order as 0.1 lot size and the second one is 0.3). Author proposed 0.1 and 3 lot size respectively and stop loss = 1,000 for big deposit size. But as you understand I changed stop loss to reasonable 100 and use 0.1 and 0.3 lot sizes instead of 0.1 and 3.

I am testing it since January 2006 with same settings: it is slowly going but very profitable for EURUSD and GBPUSD. Of course you should have deposit size not less than 5,000 per trading pair (may be more).

--------
Other EAs.
There are some other EAs from the same author. For example, EAs coded especially to be used with very small deposit size (many people asked so he did). But it is for Metatrader 3 so some one may convert it to MT4 and of course it should be improved slightly. Those EAs were posted as well in zigzag threads in our forum.
Attached Images
File Type: gif goldwarrior02b.gif (55.4 KB, 490 views)
Attached Files
File Type: mq4 DayImpuls.mq4 (1.1 KB, 60 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
  #76 (permalink)  
Old 09-04-2007, 09:46 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by TickJob View Post
could some one kind enough to explain the logic behind GoldWarrior?
Why name of this EA is Goldwarrior?
Because it was Silverwarrior.
And it was coded final Platinum version. As i remember the author wanted to sell Platinum. But he developed everything during the 5 years on the many public forums and when he finished so he realized that just few brokers are having MetaTrader 3 only. He coded and he is coding right now for MetaTrader 3 only. Somebody should convert to MT4... But it was too late: Metatrader 4 was started by many brokers and he did not know MT4 programming language well in that time: he was too busy with his MT3 coding. And he decided to post everything for free in original MT3 format. Platinum was posted as well in some zigzag threads in our forum but it was not converted yet to MT4.

Goldwarrior which i am testing now (and which we are talking about) was converted by Nick Beluck for our forum.
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
  #77 (permalink)  
Old 09-06-2007, 12:32 PM
CeroOnda's Avatar
Member
 
Join Date: Mar 2007
Location: Buenos Aires - Argentina
Posts: 59
CeroOnda is on a distinguished road
Question

I can't find the "mq4" file for GoldWarrior. Is it available for download MT4?
Thanks a lot!

CeroOnda

Quote:
Originally Posted by newdigital View Post
Sorry I am not a coder but as i understand this EA is using the following.

Indicators: DayImpuls as custom indicator, zigzag as custom indicator and CCI as standard indicator.

Sell signal:

Code:
if ((ZZ3>0.01 || ZZ2>0.01) && ((cci0<cci1 && cci1>50 && cci0>30 && nimp<0 && imp>0) || 
      (cci0>200 && cci1>cci0 && nimp>100 && imp>nimp))) {
You may understand it by yourself:
|| = or
&& = and
ZZ3 is value if zigzag for last bar
ZZ2 is value of zigzag for current bar
cci0 is
Code:
cci0=iCCI(NULL,0,per,PRICE_CLOSE,0);
= CCI value on close price
cci1 is cci1=iCCI(NULL,0,per,PRICE_CLOSE,1); = CCI value on previous bar close price
nimp = value of DayImpuls for current bar
imp = value of DayImpuls for previous bar

Code:
imp=iCustom(NULL,0,"DayImpuls",per,d,0,1);
   if (imp>10000) imp=0;
   nimp=iCustom(NULL,0,"DayImpuls",per,d,0,0);
   if (nimp>10000) nimp=0;
   ZZ3=iCustom(NULL,0,"ZigZag",depth,deviation,backstep,0,1);
   ZZ2=iCustom(NULL,0,"ZigZag",depth,deviation,backstep,0,0);
   cci1=iCCI(NULL,0,per,PRICE_CLOSE,1);
   cci0=iCCI(NULL,0,per,PRICE_CLOSE,0);
Besides this EA is slightly martingaled: if some open order is falling up to some negative points so the other order will be opened in opposite direction with increased lot size 9i am testing as first order as 0.1 lot size and the second one is 0.3). Author proposed 0.1 and 3 lot size respectively and stop loss = 1,000 for big deposit size. But as you understand I changed stop loss to reasonable 100 and use 0.1 and 0.3 lot sizes instead of 0.1 and 3.

I am testing it since January 2006 with same settings: it is slowly going but very profitable for EURUSD and GBPUSD. Of course you should have deposit size not less than 5,000 per trading pair (may be more).

--------
Other EAs.
There are some other EAs from the same author. For example, EAs coded especially to be used with very small deposit size (many people asked so he did). But it is for Metatrader 3 so some one may convert it to MT4 and of course it should be improved slightly. Those EAs were posted as well in zigzag threads in our forum.
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
  #78 (permalink)  
Old 09-06-2007, 01:41 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by CeroOnda View Post
I can't find the "mq4" file for GoldWarrior. Is it available for download MT4?
Thanks a lot!

CeroOnda
It is here GoldWarrior EA (Zigzag Trading System)
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
  #79 (permalink)  
Old 09-06-2007, 03:03 PM
smartman's Avatar
Junior Member
 
Join Date: Jun 2006
Posts: 28
smartman is on a distinguished road
-----------

Last edited by smartman; 09-06-2007 at 03:05 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
Reply

Bookmarks

Tags
zigzag


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
GoldWarrior EA (Zigzag Trading System) newdigital Expert Advisors - Metatrader 4 88 11-12-2009 11:42 AM
BrainSystem: Trading System Development and Trades newdigital Brain Systems 667 10-08-2009 12:29 AM
Zigzag system development newdigital Indicators - Metatrader 3 14 05-20-2009 05:52 AM
Brainwashing: system development newdigital Brain Systems 45 11-24-2006 12:55 PM


All times are GMT. The time now is 12:55 PM.



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