| New signals service! | |
|
|||||||
| 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 (5) | Thread Tools | Display Modes |
|
|||
|
Quote:
ps. I would take a look at genetic programming if you are into this stuff, it's in some ways much cleaner than nn's and the information and algorithms gained with genetic algorithms can be used as part of your normal algorithms as well. For more info see Genetic programming - Wikipedia, the free encyclopedia or read couple of Kozas books. |
|
|||
|
Bishops book is quite good
Amazon.com: Neural Networks for Pattern Recognition: Books: Christopher M. Bishop |
|
|||
|
Quote:
I have logged into this account with MetaTrader but I can only see his current trade on the chart. How did you get the start and ending icons of previous trades to show on the chart you posted? Thanks, StrangeGuy |
|
|||
|
Sample code for PNN
311: Neural Networks
3. Implementing PNN // C is the number of classes, N is the number of examples, Nk are from class k // d is the dimensionality of the training examples, sigma is the smoothing factor // test_example[d] is the example to be classified // Examples[N][d] are the training examples int PNN(int C, int N, int d, float sigma, float test_example[d], float Examples[N][d]) { int classify = -1; float largest = 0; float sum[ C ]; // The OUTPUT layer which computes the pdf for each class C for ( int k=1; k<=C; k++ ) { sum[ k ] = 0; // The SUMMATION layer which accumulates the pdf // for each example from the particular class k for ( int i=0; i<Nk; i++ ) { float product = 0; // The PATTERN layer that multiplies the test example by the weights for ( int j=0; j<d; j++ ) product += test_example[j] * Examples[i][j]; product = ( product – 1 ) / ( sigma * sigma ); product = exp( product ); sum[ k ] += product; } sum[ k ] /= Nk; } for ( int k=1; k<=C; k++ ) if ( sum[ k ] > largest ) { largest = sum[ k ]; classify = k; } return classify; } |
|
||||
|
PHP Code:
__________________
ex4 --> mq4 PM
Last edited by ak97052d; 12-11-2007 at 09:06 PM. |
![]() |
| Bookmarks |
| Tags |
| forex_nn_expert, nn ea, better EA forex |
|
|
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/expert-advisors-metatrader-4/10848-better-nn-ea.html
|
||||
| Posted By | For | Type | Date | |
| Harmony of Life - Neural Network (The Artificial Intelegence) | Post #8 | Refback | 03-14-2008 09:30 AM | |
| Harmony of Life - Neural Network (The Artificial Intelegence) | Post #8 | Refback | 12-20-2007 01:58 AM | |
| Harmony of Life - Aditya's Blog | Post #8 | Refback | 12-05-2007 11:06 AM | |
| Forex MetaTrader Expert Advisors -- Select From >40 of the Best Expert Advisors EA for MT4 on Squidoo | This thread | Refback | 11-24-2007 08:56 AM | |
| Forex MetaTrader Expert Advisors -- Select From >40 of the Best Expert Advisors EA for MT4 on Squidoo | This thread | Refback | 11-23-2007 04:54 PM | |