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
  #1 (permalink)  
Old 10-29-2006, 10:54 AM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
Robot Power EA

I cann't get good model quality but it can range from 75%-86% wins

Use on 1 hr-4hr chart with default settings. Gbp$ and Euro$

Can any one get good modeling quality? I get an error at the beginning of testing "not enough bars for this stradigy" takes a few befor it starts trading. But once it does it seems ok. I think it has to wait for enough bars. Thats the reason for low quality. (I have max bars allowed in history and chart)

I am going to run it on demo this week.

Dave
Attached Files
File Type: mq4 RobotPowerM5_meta4V12.mq4 (6.6 KB, 558 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
  #2 (permalink)  
Old 10-29-2006, 11:24 AM
Member
 
Join Date: Oct 2005
Posts: 54
Ganja is on a distinguished road
hey , actually i started forward test it last week. the results are good till now.

i also back test it since 1.06.06 - 18.10.06 and the result are good also (100% back profit in 4 months)

but when i tryed backtest it from 1.01.06 it lost all the money till 6.04.06 (4 months)

we know that the market isnt same like 1 year ago and that the problem with the experts ... we always tune it to now days , but the market changing all the time , year after year .. almost all the ea's u would found , if they r proffitble for a year on backtest , try to backtest it for 2 years , and u'll see whats happend ..

sorry for my english , here are the results of my forward test , i erase the trades that didnt made by robo, i use 4h chart
Attached Images
File Type: gif robo.GIF (49.7 KB, 1399 views)
Attached Files
File Type: rar 01.06.06-18.10.06.rar (72.4 KB, 206 views)
File Type: rar begining of the year.rar (45.1 KB, 169 views)

Last edited by Ganja; 10-29-2006 at 11:28 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
  #3 (permalink)  
Old 10-29-2006, 12:16 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
For some reason my model quality sux.

I can get great results and time of the past 2 years. But thats why I want others to test it too.

That one test is scary. We never know when the market will start doing that again. We can make adjustment to an ea for the past but we cann't adjust for future since we aren't fortune tellers. We gotta find settings that survive any kind of market conditions over at least a 2 year peroid.

Can you run that same bad peroid on 1 hr time frame same settings, to see what it does?

Last week was good for any trend folowing ea so last weeks forward test isn't really good judge of an ea.

what broker too?

thanks
Dave
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
  #4 (permalink)  
Old 10-29-2006, 12:37 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
ok I deleted all my history and reloaded it. Now its good.90%

I get the same now.

Problem with this ea is it always keeps a trade in. Soon as it closes a trade it opens a trade.

We need a coder to look at this ea and do something about that. That don't seem right.

Or it needs another indicacor filter. Like trend continuation, or I_trend. Something to trigger a trade and not kust keep one in at all times.
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
  #5 (permalink)  
Old 10-29-2006, 12:48 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
I think the problem is here in this code. Seems alot is not included in the entry calculation.

Any ideas?

void calculateIndicators()
{
bull = iBullsPower(NULL, 0, BullBearPeriod, PRICE_CLOSE, 1);
bear = iBearsPower(NULL, 0, BullBearPeriod, PRICE_CLOSE, 1);
Comment("bull+bear= ", bull + bear);
//sarCurrent = iSAR(NULL,0,0.02,0.2,0); // Parabolic Sar Current
//sarPrevious = iSAR(NULL,0,0.02,0.2,1); // Parabolic Sar Previuos
//momCurrent = iMomentum(NULL,0,14,PRICE_OPEN,0); // Momentum Current
// momPrevious = iMomentum(NULL,0,14,PRICE_OPEN,1); // Momentum Previous
b = 1 * Point + iATR(NULL, 0, 5, 1)*1.5;
s = 1 * Point + iATR(NULL, 0, 5, 1)*1.5;
// Check for BUY, SELL, and CLOSE signal
// isBuying = (sarCurrent <= Ask && sarPrevious>sarCurrent && momCurrent < 100 &&
// macdHistCurrent < macdSignalCurrent && stochHistCurrent < 35);
// isSelling = (sarCurrent >= Bid && sarPrevious < sarCurrent && momCurrent > 100 &&
// macdHistCurrent > macdSignalCurrent && stochHistCurrent > 60);
isBuying = (bull+bear > 0);
isSelling = (bull+bear < 0);
isClosing = false;
}
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
  #6 (permalink)  
Old 10-29-2006, 03:21 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
Quote:
Originally Posted by xxDavidxSxx
I think the problem is here in this code. Seems alot is not included in the entry calculation.

Any ideas?

void calculateIndicators()
{
bull = iBullsPower(NULL, 0, BullBearPeriod, PRICE_CLOSE, 1);
bear = iBearsPower(NULL, 0, BullBearPeriod, PRICE_CLOSE, 1);
Comment("bull+bear= ", bull + bear);
//sarCurrent = iSAR(NULL,0,0.02,0.2,0); // Parabolic Sar Current
//sarPrevious = iSAR(NULL,0,0.02,0.2,1); // Parabolic Sar Previuos
//momCurrent = iMomentum(NULL,0,14,PRICE_OPEN,0); // Momentum Current
// momPrevious = iMomentum(NULL,0,14,PRICE_OPEN,1); // Momentum Previous
b = 1 * Point + iATR(NULL, 0, 5, 1)*1.5;
s = 1 * Point + iATR(NULL, 0, 5, 1)*1.5;
// Check for BUY, SELL, and CLOSE signal
// isBuying = (sarCurrent <= Ask && sarPrevious>sarCurrent && momCurrent < 100 &&
// macdHistCurrent < macdSignalCurrent && stochHistCurrent < 35);
// isSelling = (sarCurrent >= Bid && sarPrevious < sarCurrent && momCurrent > 100 &&
// macdHistCurrent > macdSignalCurrent && stochHistCurrent > 60);
isBuying = (bull+bear > 0);
isSelling = (bull+bear < 0);
isClosing = false;
}

when I try to take the // out from infront of the functions I get an error that those variables not defined.
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
  #7 (permalink)  
Old 10-29-2006, 04:27 PM
Senior Member
 
Join Date: Dec 2005
Posts: 508
mrtools is on a distinguished road
Robot Power

I have been working on this expert for quite awhile trying to make it profitable,on this version added time filter,money management, and pivots avg sys, finished last weekend and opened a 50k demo with North Finance and heres the results, personally think I just happened to start it on a good week for this Expert but not sure. Seems best on eur/usd H4 timeframe for NORTH FINANCE set time to trade from 8 to 17.Renamed it Sixper because of six period pivots.On the demo results I had sixper on eur/usd only but then added it to the rest of the pairs except aud/usd and gbp/usd. Needs TTM Stoch in the experts/indicators and of course Sixper in experts file.


mrtools
Attached Files
File Type: zip Sixper .zip (13.5 KB, 372 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
  #8 (permalink)  
Old 10-29-2006, 04:42 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
cool thanks mrtools.

Is this thing suppost to keep a position in at all times? shouldn't it want to wait for a signal? because durring consilidation a bear signal can change to bull signal and visa-sersa.

and I keep getting this not enough bars error even though I have bars in chart set to max and max bars in history.

any ideas?

thanks
Dave
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
  #9 (permalink)  
Old 10-29-2006, 05:09 PM
xxDavidxSxx's Avatar
Senior Member
 
Join Date: Jul 2006
Posts: 745
xxDavidxSxx is on a distinguished road
ok i fixed the always in thing.
Attached Files
File Type: mq4 Sixper RobotV1.mq4 (8.3 KB, 497 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
  #10 (permalink)  
Old 10-29-2006, 06:01 PM
Senior Member
 
Join Date: Dec 2005
Posts: 508
mrtools is on a distinguished road
Robot

Very good Dave been trying to figure out how to slow this thing down some,adding bulls and bears to the main buy and sell very easy fix.May make this a very good expert.


mrtools
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
ROBOT, robot power EA, power ea, stoch power ea, robotpower EA, sixper robot, EA robot


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
Metastock to MT4 gody6000 Indicators - Metatrader 4 37 10-25-2009 10:35 AM
Bulls Power Bears Power and Accelerator saslam Suggestions for Trading Systems 9 06-16-2009 06:20 PM
Robot Scalper BrunoFX Post and compare Trades 5 10-22-2008 05:05 AM
Robot Scalper jdun Expert Advisors - Metatrader 3 9 08-18-2008 06:31 PM


All times are GMT. The time now is 04:18 PM.



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