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
  #111 (permalink)  
Old 03-27-2006, 04:53 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
ok, but as a newbie I'll wait for someone more experienced to give high and low limits to different parameters.

I'm currently testing 2.4 on presets from Holyguy7 and from 1:00 AM I only made 3 trades (1:10 sell usdcad on daily BAD; 7:29 and 14:29 gbpusd on H1 first 28 pips and second actually loser). It seems to be normal, anyone have same results?

Also, to allow multiple timeframes tests, I changed three lines on 2.6 version:
1 -
extern int ID;
becomes
extern int ID_BASE=100000; to give a number to PG_2.6 (here 1)

2 - I added next line just under "int Bar;"
int ID;

3 - I added init() function
int init(){
ID=ID_BASE+Period(); return(0);
}

So on a Daily chart magicnumber will be 101440 and will appear on trade's comment. It will be easier to analyse results for each timeframe and kind of parameters. I didn't test it yet but it should work.
and for a specific chart you will have a fixed ID and not a random number.

Also, maybe we could add a initial takeprofit using superclose function. Just in case of computer crash.

PS: I made other changes that I must delete before posting. tell me if interested.

Last edited by jojolalpin; 03-27-2006 at 05:00 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
  #112 (permalink)  
Old 03-27-2006, 05:00 PM
Senior Member
 
Join Date: Jan 2006
Posts: 80
jyrik is on a distinguished road
I have not recived any signals on majors ( Daily and Weekly)
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
  #113 (permalink)  
Old 03-27-2006, 05:04 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
It could have been great on all JPY if it had comes up a little more.

Maybe we could start by pending orders based on lower timeframe bars (M1?) to look for few pips more (covering spread for example). A kind of trailing start.
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
  #114 (permalink)  
Old 03-27-2006, 05:15 PM
Nicholishen's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Quote:
Originally Posted by jojolalpin
ok, but as a newbie I'll wait for someone more experienced to give high and low limits to different parameters.

I'm currently testing 2.4 on presets from Holyguy7 and from 1:00 AM I only made 3 trades (1:10 sell usdcad on daily BAD; 7:29 and 14:29 gbpusd on H1 first 28 pips and second actually loser). It seems to be normal, anyone have same results?

Also, to allow multiple timeframes tests, I changed three lines on 2.6 version:
1 -
extern int ID;
becomes
extern int ID_BASE=100000; to give a number to PG_2.6 (here 1)

2 - I added next line just under "int Bar;"
int ID;

3 - I added init() function
int init(){
ID=ID_BASE+Period(); return(0);
}

So on a Daily chart magicnumber will be 101440 and will appear on trade's comment. It will be easier to analyse results for each timeframe and kind of parameters. I didn't test it yet but it should work.
and for a specific chart you will have a fixed ID and not a random number.

Also, maybe we could add a initial takeprofit using superclose function. Just in case of computer crash.

PS: I made other changes that I must delete before posting. tell me if interested.
Great idea! The only thing to keep in mind is if you are going to run different tests on the same pair and TF to change the Base ID. I added those changes, but made one small alteration. ...because the Period can can change from the variable "period" (different from chart), I did this instead:ID=ID_BASE+P(); return(0);
The P() returns the actual period in use by the program. Great idea...what other changes have you played with?
Here is 2.6.2.
__________________
"Anyone who has never made a mistake has never tried anything new." -Albert Einstein

Last edited by Nicholishen; 03-27-2006 at 06:24 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
  #115 (permalink)  
Old 03-27-2006, 05:24 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
Sure P() is better. other changes were about comments but uninteresting.

Who code the superclose function? I am trying to well understand it but to had a initial takeprofit (which should be simple, a value like 2 times takeprofit) maybe the initial coder will do it faster. It's just in case of crash and not the most important while testing. can wait and I will have time to do it when tests are launched.

About tests plan, you seems to be the right person to first define limits to parameters. And after we'll see how many we are and which tests we should do first.
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
  #116 (permalink)  
Old 03-27-2006, 05:26 PM
Nicholishen's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Quote:
Originally Posted by jojolalpin
It could have been great on all JPY if it had comes up a little more.

Maybe we could start by pending orders based on lower timeframe bars (M1?) to look for few pips more (covering spread for example). A kind of trailing start.
Cool. How about something simple like if the main signal is ready to go long and stochastics on M1 (K<D), then wait till the cross, then get in? ...or did you have something else in mind?
__________________
"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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #117 (permalink)  
Old 03-27-2006, 05:37 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
I'm really a newbie (only 3 months that I read a lot and backtest) but I have read only good things about stochs (not enought pratice to have a real advice).
But to keep this EA free of indicators (the initial idea), whe could just use trailing bars on M1? or M5? to be a the best place to trade and avoid trading in the bad way.

But let make the first steps in a real forward testing plan and based on results we'll see better if a system like trailing bars or stochs could have helped in a better entry, no?
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
  #118 (permalink)  
Old 03-27-2006, 05:42 PM
Nicholishen's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 531
Nicholishen is on a distinguished road
Quote:
Originally Posted by jojolalpin
Sure P() is better. other changes were about comments but uninteresting.

Who code the superclose function? I am trying to well understand it but to had a initial takeprofit (which should be simple, a value like 2 times takeprofit) maybe the initial coder will do it faster. It's just in case of crash and not the most important while testing. can wait and I will have time to do it when tests are launched.

About tests plan, you seems to be the right person to first define limits to parameters. And after we'll see how many we are and which tests we should do first.
Can you restate your question? I don't quite understand it. Sorry.
__________________
"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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #119 (permalink)  
Old 03-27-2006, 05:42 PM
jojolalpin's Avatar
Member
 
Join Date: Mar 2006
Posts: 89
jojolalpin is on a distinguished road
Test Plan

I don't like to have orders with no SL or no TP and when using superclose(), there is no TP untill Trailing be activated. So I ask why not set an initial takeprofit (before superclose set one) to be secured in case of computercrash. That's why I proposed two times the value of takeprofit variable.

Also to initiate on the test plan, parameters are:

Stoploss: 10 to 30?
Takeprofit: 20 to 100?
TimeFrames: M1 M15 H4 Daily Weekly..
Currencies: 12 from Holyguy7 selection? only those with a little spread (<=5)?

those are just suggestions.

Last edited by jojolalpin; 03-27-2006 at 05:46 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
  #120 (permalink)  
Old 03-27-2006, 05:44 PM
Senior Member
 
Join Date: Mar 2006
Posts: 793
Maji is on a distinguished road
Quote:
Originally Posted by Nicholishen
Cool. How about something simple like if the main signal is ready to go long and stochastics on M1 (K<D), then wait till the cross, then get in? ...or did you have something else in mind?
Nich,

I think using any kind of indicator is a bad idea. The strength of the system is because it depends on price action and adding any derivatives and degrees of freedom will only degrade the performance.

Just my $0.02.

Maji
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
profit generator 333, profit generator EA, forex, profit generator, profit one ea, ea profit, scalp ea, tdion, MTReport4, bagovino


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
forex signal generator paijolopez Analytics 1162 Yesterday 11:29 PM
Generator of filter's indicator for MT4 newdigital Digital Filters 27 10-23-2008 12:41 PM
News Generator mqldev News/Signal Trading 21 03-23-2007 02:52 AM
Profit Generator EA results sadaloma Post and compare Trades 216 05-27-2006 07:24 PM


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



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