Forex
Google
New signals service!

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
 
LinkBack (1) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
Old 10-29-2006, 09: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, 332 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-29-2006, 10:24 AM
Member
 
Join Date: Oct 2005
Posts: 45
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, 715 views)
Attached Files
File Type: rar 01.06.06-18.10.06.rar (72.4 KB, 140 views)
File Type: rar begining of the year.rar (45.1 KB, 117 views)

Last edited by Ganja; 10-29-2006 at 10:28 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-29-2006, 11:16 AM
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!
Reply With Quote
  #4 (permalink)  
Old 10-29-2006, 11:37 AM
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!
Reply With Quote
  #5 (permalink)  
Old 10-29-2006, 11:48 AM
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!
Reply With Quote
  #6 (permalink)  
Old 10-29-2006, 02: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!
Reply With Quote
  #7 (permalink)  
Old 10-29-2006, 03:27 PM
Senior Member
 
Join Date: Dec 2005
Posts: 329
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, 265 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-29-2006, 03: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!
Reply With Quote
  #9 (permalink)  
Old 10-29-2006, 04: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, 331 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 10-29-2006, 05:01 PM
Senior Member
 
Join Date: Dec 2005
Posts: 329
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!
Reply With Quote
Reply

Bookmarks

Tags
ROBOT

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/expert-advisors-metatrader-4/4334-robot-power-ea.html
Posted By For Type Date
منابع خبر ، تحلیل و تحقیق در بازارهای مالی(news,analysis and commentary resources) - صفحه 4 - Sarmaye Forums This thread Refback 07-01-2007 12:37 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Metastock to MT4 gody6000 Indicators - Metatrader 4 17 09-25-2008 07:16 PM
Robot Scalper jdun Expert Advisors - Metatrader 3 9 08-18-2008 05:31 PM
Bulls Power Bears Power and Accelerator saslam Suggestions for Trading Systems 8 12-02-2005 10:33 PM
Robot Scalper BrunoFX Post and compare Trades 4 11-03-2005 04:40 PM


All times are GMT. The time now is 09:37 AM.



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