Forex
Google

Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
Forex Forum FAQ Members List Calendar Mark Forums Read


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

 
 
LinkBack (11) Thread Tools
  8 links from elsewhere to this Post. Click to view.
Old 03-23-2006, 10:21 PM
holyguy7's Avatar
holyguy7 holyguy7 is offline
Senior Member
 
Join Date: Feb 2006
Posts: 443
holyguy7 is on a distinguished road
Profit Generator EA

I am currently forward testing a new EA that seems to have some potential. I was hoping that everyone on the board here could help with different settings and perameters and perhaps improve on the EA if possible.

I called the EA, "Profit Generator" because I believe that is what is really could be. It is simple in its rules yet powerful. Let's all improve this EA together and find some good settings for it. Improvements that could make it better:

System Description:

If the Today's Range (till now) is greater than 10 pips, and today's open is less than Today's Midprice (average of high and low) and if the ask is lower than today's open, then buy. Stop is 30 pips, Target is 40 pips.

If the Today's Range (till now) is greater than 10 pips, and today's open is higher than Today's Midprice (average of high and low) and if the bid is higher than today's open, then sell. Stop is 30 pips, Target is 40 pips.

The above trades are subject to the condition that the number of concurrent trades are less than MaxTrades, which in this case is 1. Thus, you can have only one trade at a given time.

The improvements/Variables to this EA are as follows:

1. Trailing Stop
2. Money Management
3. ID- MagicID that allows for running more than one EA on the same pair.
4. Removed time constraints.
5. Adjustable bar (10 is default but can be adjusted up or down for lower or higher timeframes) Sets the Maximum length of the bar.
6. Scalp mode-To Take profit less than Broker will allow, Set the TSactivation to the pip value you want to TP and set TrailingPIPs to 0.
7. Traditional Trailing mode- Set the TSactivation to 0, and set TrailingPIPs to the distance that you want to trail.
8. Hybrid mode- Set TSactivation to the normal TP level then set Trailingpips to the number of pips that you want to trail from that point.
9. Alert option for those that want to trade manually rather than automatic.
10. MaxTrades- maximum number of trades open at a time.
11. Risk- percent of available margin to risk.
12. UseClose- True or False- This will use the SuperClose.
13. TSactivation=40,TrailPips=5; - TSactivation will set the point where the TS will start.
14. UseHourTrade - Time filter (true) or No time filter (false)
15. FromHourTrade - start trading on this hour (GMT)
16. ToHourTrade - end trading on this hour (GMT)
17. UseLastPeriodPerams- True/False - uses the high and low from last period for calculation.
18. period - 0 - leave this number as zero to use the period from the chart.
19. OneTradeperPeriod- false/true - This will only allow one new trade per period if set to true.
20. Alerts- false/true - Alerts will alert when trade signal is present.
21. AlertOnlyMode- false/true - Will not place trades, but will alert to the platform (for manual trading)
22. WeekendMode- false/true - True=Will close all trades on and after the hour to close.
23. hour_to_close- 21 - Hour on weekend to close all remain trades if Weekend mode is set to true.
24. UseClose - true/false. It will double the Take Profit for safety purposes.
25. EMA Confirmation- Exponential Moving Average confirmation if so desired. You can set the low and high EMA.
26. Stochastic Confirmation- Stochastic if desired for confirmation of trend
27. Reverse- Find some settings that are consistent money losers? Reverse and start making money from those settings.
28. Obsolete Method- Will close and switch positions after a set period of time if conditions of your order have reversed.

Let's work together to improve this EA as I do believe it has some great potential.

I will continue to update this first post and put the latest version of the EA here for ease of access and newbies that just discover this tread.

Profit Generator version 3.3.2 is the same one found HERE

Real-Time Performance of the EA (updated every 15 minutes) can be found HERE. Thanks marlintrdg!!

Please use this EA as it has all the same functionality of the original EA with many features added. I don't want many different versions of this EA floating around and that is why I want everyone to forward test with this EA.

UPDATE: Backtesting with good modeling quality appears to be successful so far in forward test. Let's all work to backtest (to find good results) and then forward test to verify the results.

Note: This is a work in progress, I would appreciate the cooporation of any and all testers to back and forward test this EA.

Thank you for your support.
Attached Images
File Type: pdf Profit Generator EA Document.pdf (207.6 KB, 3358 views)
Attached Files
File Type: mq4 Profit Generator 3.3.2.mq4 (22.7 KB, 2318 views)

Last edited by holyguy7 : 04-20-2006 at 09:03 PM. Reason: Updated EA to latest version
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-23-2006, 11:31 PM
Maji Maji is offline
Senior Member
 
Join Date: Mar 2006
Posts: 787
Maji is on a distinguished road
I see that you are using the statement "(High[0]-Low[0])>10*Point" in your EA. [0] denotes the current bar being formed. How can you determine what is the high and the low of a bar that has yet to be completely formed?

Thanks,
Maji
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 12:29 AM
holyguy7's Avatar
holyguy7 holyguy7 is offline
Senior Member
 
Join Date: Feb 2006
Posts: 443
holyguy7 is on a distinguished road
Quote:
Originally Posted by Maji
I see that you are using the statement "(High[0]-Low[0])>10*Point" in your EA. [0] denotes the current bar being formed. How can you determine what is the high and the low of a bar that has yet to be completely formed?

Thanks,
Maji
That would be from the previous bar. That is why it works so well in the daily timeframes. I am also currently testing it out on weekly timeframe as well. I believe it might even be more accurate.

So if it is >10 from the previous bar (in the current bar). I hope you understand, it is accually very simple. Kind of a counter-trend system that attempts to find retracement after the previous day's gain or loss. I hope that makes sense.

I am not sure but I believe that is how it works. I did not write the original EA but only modified this.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 07:50 AM
sadaloma's Avatar
sadaloma sadaloma is offline
Senior Member
 
Join Date: Sep 2005
Posts: 343
sadaloma is on a distinguished road
Quote:
Originally Posted by holyguy7
That would be from the previous bar. That is why it works so well in the daily timeframes. I am also currently testing it out on weekly timeframe as well. I believe it might even be more accurate.

So if it is >10 from the previous bar (in the current bar). I hope you understand, it is accually very simple. Kind of a counter-trend system that attempts to find retracement after the previous day's gain or loss. I hope that makes sense.

I am not sure but I believe that is how it works. I did not write the original EA but only modified this.
Hi Holyguy7,

Thanks for the EA. Are you testing the EA on D1 charts to get the results you attached on your first post?

Sada

Last edited by sadaloma : 03-24-2006 at 07:52 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 08:22 AM
glader glader is offline
Member
 
Join Date: Jan 2006
Location: Prague, CZECH REP
Posts: 83
glader is on a distinguished road
Quote:
Originally Posted by holyguy7

Let's all improve this EA together and find some good settings for it. Improvements that could make it better.
I will test this EA forward, beginning on monday...thanks for sharing.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 03:58 PM
Maji Maji is offline
Senior Member
 
Join Date: Mar 2006
Posts: 787
Maji is on a distinguished road
Thanks Holyguy for your explanation.

Maji
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 04:24 PM
holyguy7's Avatar
holyguy7 holyguy7 is offline
Senior Member
 
Join Date: Feb 2006
Posts: 443
holyguy7 is on a distinguished road
Quote:
Originally Posted by sadaloma
Hi Holyguy7,

Thanks for the EA. Are you testing the EA on D1 charts to get the results you attached on your first post?

Sada
Yes. That is exactly correct. It is most successful on daily and higher. I am also testing it on the weekly chart and it is successful as well (though does not trade as much).

It also has a problem (bug) that it does not always close orders when it hits its take profit. I was wondering if someone could fix that as when I went up to monitor the results, it would be way over the take profit price and I would have to close manually. It had only happened on a couple currency pairs but I do want if fixed as it could have easily when way higher or started dropping again.

Below is the attached statement so far. It keeps generating money.
Attached Images
File Type: gif Profit Generator.gif (4.8 KB, 2094 views)
Attached Files
File Type: htm Profit Generator.htm (20.6 KB, 1423 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 04:42 PM
JoZo's Avatar
JoZo JoZo is offline
Senior Member
 
Join Date: Feb 2006
Location: Croatia
Posts: 409
JoZo is on a distinguished road
Hi,

Which indicators are used by this EA?
I haven't downloaded it yet.
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 05:01 PM
Nicholishen's Avatar
Nicholishen Nicholishen is offline
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Quote:
Originally Posted by JoZo
Hi,

Which indicators are used by this EA?
I haven't downloaded it yet.
Thanks
There are no indicators. This EA operates on raw price movement.
__________________
"Anyone who has never made a mistake has never tried anything new." -Albert Einstein
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 03-24-2006, 05:09 PM
JoZo's Avatar
JoZo JoZo is offline
Senior Member
 
Join Date: Feb 2006
Location: Croatia
Posts: 409
JoZo is on a distinguished road
Quote:
Originally Posted by Nicholishen
There are no indicators. This EA operates on raw price movement.
Thanks for your quick answer. I will download and test it.

Thanks again
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 

Thread Tools

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

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/expert-advisors-metatrader-4/1415-profit-generator-ea.html
Posted By For Type Date
كارگاه اكسپرت Profit Generator - Page 7 - انجمن تخصصی فارکس پارس This thread Refback 02-29-2008 02:27 PM
كارگاه اكسپرت Profit Generator - Page 7 - انجمن تخصصی فارکس پارس This thread Refback 02-29-2008 07:07 AM
expert ها - Page 6 - انجمن تخصصی فارکس پارس This thread Refback 02-14-2008 08:31 AM
expert ها - Page 6 - انجمن تخصصی فارکس پارس This thread Refback 12-02-2007 09:49 AM
- 12 - This thread Refback 08-08-2007 09:03 PM
- This thread Refback 07-19-2007 12:28 PM
Control Panel - Powered by Semipixel.com Technology This thread Refback 07-19-2007 05:30 AM
ASCTrend - 6 - This thread Refback 06-27-2007 12:28 AM
- This thread Refback 06-26-2007 03:59 PM
Profit Generator 333 - IRXFX Forums - Enjoy Pips ! This thread Refback 06-24-2007 03:03 AM
VTTrader: Request Indicator or Trading System for VT Trader. - Page 4 @ Forex Factory This thread Refback 06-22-2007 07:32 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
forex signal generator paijolopez Analytics 732 Today 09:18 AM
Generator of filter's indicator for MT4 newdigital Digital Filters 26 05-20-2008 07:54 AM
News Generator mqldev News/Signal Trading 21 03-23-2007 12:52 AM
Profit Generator EA results sadaloma Post and compare Trades 216 05-27-2006 06:24 PM


All times are GMT. The time now is 10:06 PM.