Forex



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
 
Thread Tools Display Modes
  #21 (permalink)  
Old 12-08-2007, 11:49 AM
Senior Member
 
Join Date: Mar 2006
Posts: 1,064
barnix is on a distinguished road
Monte-Carlo Evaluation of Trading Systems
Attached Files
File Type: pdf MonteDoc12.15.06.pdf (494.2 KB, 950 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
  #22 (permalink)  
Old 12-08-2007, 03:43 PM
Member
 
Join Date: Feb 2006
Posts: 34
flexie is on a distinguished road
development tean

nice idea gents. I'd like to toss my hat into the ring and assist where needed. I especially like the idea of less "noise".

I can be reached at pipaholic [at] shaw.ca and skype: mflexie. References are available if needed.

Mark
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
  #23 (permalink)  
Old 12-09-2007, 05:54 AM
KaMpeR's Avatar
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 495
KaMpeR is on a distinguished road
References?

Hi Mark

That made me smile, thank you.
References, LOL.
Why would anyone need references on you, if they do then they do not deserve your abilities.

Keep coding bud.
Wayne
__________________
FatCat
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
  #24 (permalink)  
Old 12-09-2007, 06:27 AM
Junior Member
 
Join Date: Aug 2007
Posts: 19
Orest is on a distinguished road
Problem is solved. Enjoi the solution....

Hey guys,
you don't need to re-invent the wheel...

Please read how to create Metatrades based EA using Cortex neural networks software. It's basically step-by-step instruction which is pretty easy to follow. You even don't need to use cortex, but it gives you general idea how this kind of EA should be built. I found there very similar ideas Olexandr mentioned in his contest interview (for example C++ optimization before even using MQL)... The only problem with this approach is - again as Olexandr mentioned he teaches his EA as he trades... it seems not clear how to do that with pre-defined optimized coefficients... Anyway, read and I'm sure you will get much clearer idea.

Neural Networks and Stock / Forex Trading
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
  #25 (permalink)  
Old 12-09-2007, 11:39 AM
Member
 
Join Date: Nov 2006
Posts: 94
tiger_wong is on a distinguished road
Quote:
Originally Posted by Orest View Post
... it seems not clear how to do that with pre-defined optimized coefficients... Anyway, read and I'm sure you will get much clearer idea.

Neural Networks and Stock / Forex Trading
I think automated optimization could solve the coefficients... what do you think, guys?

Last edited by tiger_wong; 12-09-2007 at 11:41 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
  #26 (permalink)  
Old 12-09-2007, 11:57 PM
Senior Member
 
Join Date: Mar 2006
Posts: 1,064
barnix is on a distinguished road
Support Vector Regression and
Neural Networks in Time Series Prediction
Attached Images
File Type: jpg nn6.JPG (34.9 KB, 3491 views)
Attached Files
File Type: pdf DMI5594.pdf (201.7 KB, 500 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
  #27 (permalink)  
Old 12-10-2007, 12:35 AM
Junior Member
 
Join Date: Oct 2007
Posts: 2
pippero is on a distinguished road
Ive been doing this for a week

I ve been developing a NN based EA for about a week now. Mine uses an external dll, it is running in the strategy tester optimizator as I write this. I strongly suggest you keep it simple, because very complex models may work on test data but fail in live trading.

"predicting MA"s makes no sense; predicting price is more like it... but if you read the literature on the issue (You could start with edward gately's "neural networks for financial forecasting") you'll soon understand that predicting change is less error prone.

If i am not wrong, Mr. Better said that he uses Moving Averages as inputs,not that he predicts them.

There are a number of tools that will actually train and write the code for you: statistica's neural network module, neuralworks, tiberius... im just afraid that their predictive results are a bit overrated

someone mentioned there's another thread on neural nets; where is it? I have 4:43 more hours to wait until this optimization run finishes...
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
  #28 (permalink)  
Old 12-10-2007, 01:58 AM
Member
 
Join Date: Jan 2006
Posts: 35
bolt is on a distinguished road
There are too many limitations in the MT4 framework for intensive NN routines. The training is best handled externally so simply collect an array of the last 1000 bars together with the indicators of your choosing perhaps 3 or 4 is good and certainly needs more than one. Dump the array together with indicators values to cvs or mql and your tuning there instead. Auto split 80% learn to 20% test for validation. There are dozens of excellent c++ libraries which can tune and model this array faster then mt4 and without limitations. Finally only the wights file needs bringing back to Mt4.

However NN on its own is no good because with a GA input selector you have no idea what produces the best signals. As already in this thread you are discussing what MA's should be used if any at all?? GA selector will find the best inputs. That said in my experience GP is MUCH better then NN for financial time series and faster too. NN suffers from hill climb and easily bound to local minima providing a too easily curve fitted solution. GP never suffer this problem either they find a global solution or not. So in my opinion you should look closer to a genetic solution to input selection and global search and the resulting weights file is often much leaner and more efficient for MT4 to use after. I suspect that BEtters NN system has simply caught a sweet spot the last few weeks but you see prior he was down in the noise with all the other EA's.
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
  #29 (permalink)  
Old 12-10-2007, 09:15 PM
De Vinci's Avatar
Senior Member
 
Join Date: Nov 2005
Posts: 142
De Vinci is on a distinguished road
Talking

Quote:
Originally Posted by bolt View Post
There are too many limitations in the MT4 framework for intensive NN routines. The training is best handled externally so simply collect an array of the last 1000 bars together with the indicators of your choosing perhaps 3 or 4 is good and certainly needs more than one. Dump the array together with indicators values to cvs or mql and your tuning there instead. Auto split 80% learn to 20% test for validation. There are dozens of excellent c++ libraries which can tune and model this array faster then mt4 and without limitations. Finally only the wights file needs bringing back to Mt4.

However NN on its own is no good because with a GA input selector you have no idea what produces the best signals. As already in this thread you are discussing what MA's should be used if any at all?? GA selector will find the best inputs. That said in my experience GP is MUCH better then NN for financial time series and faster too. NN suffers from hill climb and easily bound to local minima providing a too easily curve fitted solution. GP never suffer this problem either they find a global solution or not. So in my opinion you should look closer to a genetic solution to input selection and global search and the resulting weights file is often much leaner and more efficient for MT4 to use after. I suspect that BEtters NN system has simply caught a sweet spot the last few weeks but you see prior he was down in the noise with all the other EA's.
Hi everyone and BOLT

Well, maybe it would be interesting for somebody to explore the following site ( lots of FREE Genetic Apps.... ) :

Sales

Download OK

Software

Genetic Pattern Finder

Bye

DV
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
  #30 (permalink)  
Old 12-14-2007, 03:05 AM
Member
 
Join Date: May 2007
Posts: 42
jdpnz is on a distinguished road
Smile

Quote:
Originally Posted by alpha24seven View Post
It has been my experience that using NNs to predict a MA is very difficult. There is simply too much variability (noise) to deliver a profitable model. This is just my experience and I'm obviously wrong if this NN model is going to win the EA contest.
In my experience, it is possible to "predict" a profitable sma (but not ema/hull or any simular) using the jurikres object (or your own) to built a proper data set.
This is because a sma has a fixed lag - 50% - and thus also a "predictable" velocity curve while most other ma's do not.
However - the output signal becomes more noisy (difficult to control) from about 25% lag towards 0% (real time)
I have never been able to actually create a real time predicted ma yet.

However - in actual live trading, I use some interesting combination of a cycle measurement (to determine cycle periods - something reminding of the Ehlers dominant cycle) and this cycle period I then use in combination with some wavelet formation.
Used properly, the wavelet provides me with a 12% lag (constant and very reliable) which then I feed to some NN. Using this, I create a MA with 5-7% lag only (better than a ZMA even) with minimum noise - and no overshoot like a ZMA.
This I then use as a basic building block for building indicators - in some indicators this is indeed very useful.
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
better ea, neural network, svm forex, cache:Jtu9ppOwDvsJ:www.forex-tsd.com/expert-advisors-metatrader-4/11096-better-nn-ea-development.htm, better, nn ea, better ea development, forex better ea, cortex, forex, Better NN EA, better development, better NN development, wackena NN-EA, libsvm, ea better, kalman, auto-scalper, Forex Auto-Scalper, search, Abdul Rahman EA Forex, fapturbo, betterea, GaussPNN, neuro, MT4_FANN, Auto-Scalper.ex4, better nn, Matrix NN ea

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
BrainSystem: indicators development newdigital Brain Systems 58 08-22-2009 09:52 PM
Zigzag system development newdigital Indicators - Metatrader 3 14 05-20-2009 05:52 AM
StochThreshold | ... under development wibitiens Indicators - Metatrader 4 0 05-26-2007 03:26 AM
Brainwashing: system development newdigital Brain Systems 45 11-24-2006 12:55 PM
Help with simple EA idea development Spider4896 Metatrader 4 2 04-21-2006 02:23 PM


All times are GMT. The time now is 07:03 AM.



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