Better NN EA development - page 38

 

===========================================

buy:

===========================================

Files:
buy.gif  6 kb
 

===========================================

sell:

===========================================

Files:
sell.gif  5 kb
 

SVM_EA_v24.mq4

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

#define NR_OF_SAMPLE_LINES 1000

#define NR_OF_TEST_LINES 200

#define NR_OF_TEST_BARS 10

#define NR_OF_ATTRIB 27

#define FUTURE_WINDOW 200

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

extern int TrainTimeFrame=PERIOD_M5;

extern int TrainPeriod=PERIOD_M1;

extern int PredictPeriod=PERIOD_M1;

extern int StopLoss=40;

extern int TakeProfit=40;

extern double Lots=0.1;

extern datetime BeginDate= D'2008.09.01 00:00';

extern double C=32.0;

extern double gamma=2.0;

 

SVM_EA_v24a.mq4

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

#define NR_OF_SAMPLE_LINES 1000

#define NR_OF_TEST_LINES 200

#define NR_OF_TEST_BARS 10

#define NR_OF_ATTRIB 27

#define FUTURE_WINDOW 200

//+------------------------------------------------------------------+

//| |

//+------------------------------------------------------------------+

extern int TrainTimeFrame=PERIOD_M5;

extern int TrainPeriod=PERIOD_M1;

extern int PredictPeriod=PERIOD_M1;

extern int StopLoss=50;

extern int TakeProfit=50;

extern double Lots=0.1;

extern datetime BeginDate= D'2008.09.01 00:00';

extern double C=32.0;

extern double gamma=2.0;

 

hi,barnix.

thanks a lot for your effort.

could you explain what is the difference between the SVM_EA versions you post above?

 
shmilya999:
hi,barnix.

thanks a lot for your effort.

could you explain what is the difference between the SVM_EA versions you post above?

You can see the input variables setting for each EA.

For version 24 :

#define NR_OF_SAMPLE_LINES 1000

#define NR_OF_TEST_LINES 200

and for version 25:

#define NR_OF_SAMPLE_LINES 2000

#define NR_OF_TEST_LINES 800

 

Nn

Dear Mr Barnix,

I know you are master in NN, Indic, EA, ... but I will be more than happy if I could help you,

I have read this thread 2 times ( first was 5 month ago and second was last week ) and I learned more and more,

In my manual (7months only) experience , prediction of next candle direction ( specially in larger TFs eg: TF1D and TF1W ) is possible (accuracy more than %80) and prediction of HL in next candle for some Pairs are medium accuracy ( TF1D: +-35 PIPs for EURUSD , +-50 PIPs for GBPUSD , +- 75PIPs for USDJPY and etc ) , ( the NN needs retrain after 30 new days ).

but now as I mentioned in two last posts, I will train trading to NN.

thx.

 

Please read my PM.

OnTheRoad:
Dear Mr Barnix,

I know you are master in NN, Indic, EA, ... but I will be more than happy if I could help you,

I have read this thread 2 times ( first was 5 month ago and second was last week ) and I learned more and more,

In my manual (7months only) experience , prediction of next candle direction ( specially in larger TFs eg: TF1D and TF1W ) is possible (accuracy more than %80) and prediction of HL in next candle for some Pairs are medium accuracy ( TF1D: +-35 PIPs for EURUSD , +-50 PIPs for GBPUSD , +- 75PIPs for USDJPY and etc ) , ( the NN needs retrain after 30 new days ).

but now as I mentioned in two last posts, I will train trading to NN.

thx.
 

extern int StopLoss=60;

extern int TakeProfit=60;

=============================

SVM_EA_v25b

#define NR_OF_SAMPLE_LINES 2000

#define NR_OF_TEST_LINES 800

#define NR_OF_TEST_BARS 10

#define NR_OF_ATTRIB 27

#define FUTURE_WINDOW 200

============================

SVM_EA_v25b_A

#define NR_OF_SAMPLE_LINES 2000

#define NR_OF_TEST_LINES 800

#define NR_OF_TEST_BARS 10

#define NR_OF_ATTRIB 27

#define FUTURE_WINDOW 300

============================

SVM_EA_v25b_B

#define NR_OF_SAMPLE_LINES 2000

#define NR_OF_TEST_LINES 800

#define NR_OF_TEST_BARS 10

#define NR_OF_ATTRIB 27

#define FUTURE_WINDOW 400

 

extern int StopLoss=60;

extern int TakeProfit=60;

====================================

SVM_EA_v24b.mq4

#define NR_OF_SAMPLE_LINES 1000

#define NR_OF_TEST_LINES 200

==============================================

SVM_EA_v25b.mq4

#define NR_OF_SAMPLE_LINES 2000

#define NR_OF_TEST_LINES 800

==============================================

SVM_EA_v26b.mq4

#define NR_OF_SAMPLE_LINES 3000

#define NR_OF_TEST_LINES 1200

Reason: