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.
I am testing the PNN code from Paco Hernández Gómez. The only thing that I did is after trained the pnn-trainer, I then optimized the limit and stop for last 2 days.
I then put the "PNN trainer" as expert assistant on EUR USD M1 and at the same time put the PNN system as EA on another EURUSD M1 chart.
Look at last 48 hours running results! It picked up exakt at the zigzag turnning points! However, it only make it to BUY operation. So if this is so nice can pick up the pattern for zigzag turning points, then only help is need is some help to get the right direction, such as AND if stochastic.. and RSI turns, then follow the direction.
Hi, progressapama,
I have not changed anything in the code at all. Download and compile and works. On the FXDD demo account.
Backtest, used the option "open price on each bar" to training the pnn traininger, with selected week period. then use the EA to use the week after the selected period, the result is so: PNN can doing will direct for the first 2 days after the training data, and start to less it's edge after 2 dags good winning ratio, for the days in the week.
Real time demo forwarding test.
1) traing PNN trainer with option "every tick in the bar" use the 3 days data (included current day), it takes whole night to finish it.
2) then put PNN trainer as EA on EURUSD M1 chart, and put EA on another chart of EURUSD M1.
Forwarding test result is : it can realy pick up the trade exakt at the turning point with very precision entries. Howerver, it's so frustrated that the EA only do buying trading. (Although it can do sell trade in the backtest, so it is not the codes fault). I put it "only Short", then the EA is not doing anytrade at all. An EA can do SELL as well, is very much appreciated when we have a financial crise, isn't ? hasn't check out the code yet.
See forwarding test PNN system on demo account, has changed any code.
It has realy nice entries on all the right points and does not take any trading when the EURUSD is congesting. It is also stupid enough only do buy operations!
fann_type is defined as a: float - if you include fann.h or floatfann.h double - if you include doublefann.h int - if you include fixedfann.h (please be aware that fixed point usage is
only to be used during execution, and not during training).
==================================
struct fann_train_data
{
enum fann_errno_enum errno_f;
FILE *error_log;
char *errstr;
unsigned int num_data;
unsigned int num_input;
unsigned int num_output;
fann_type **input;
fann_type **output;
};