2023-05-22 17:03:05 +02:00
//+------------------------------------------------------------------+
//| AlgoMasterNNFX.mq5 |
2023-05-22 22:18:08 +02:00
//| Copyright 2020, Manuel Alejandro Cercós Pérez |
//| https://www.mql5.com/en/users/alexcercos |
2023-05-22 17:03:05 +02:00
//+------------------------------------------------------------------+
# property copyright " Copyright 2021, Manuel Alejandro Cercós Pérez "
# property link " https://www.mql5.com/en/users/alexcercos "
2023-05-27 19:12:49 +02:00
# property icon " Images \\ algomasterLogo.ico "
2023-05-22 17:03:05 +02:00
# property description " Complete multipair algorithm tester for the No Nonsense Forex method (NNFX). \n Includes 6 customizable indicators, money management rules (EVZ, news and exposure), many types of summary and optimization modes... "
# property version " 1.07 "
# property strict
2023-05-22 22:18:08 +02:00
# include "AlgoMasterNNFX.mqh"
2023-05-22 17:03:05 +02:00
int OnInit ( )
{
return InitEvent ( ) ;
}
double OnTester ( )
{
return TesterEvent ( ) ;
}
void OnDeinit ( const int reason )
{
DeInitEvent ( reason ) ;
}
void OnChartEvent ( const int id , const long & lparam , const double & dparam , const string & sparam )
{
ChartEvent_Event ( id , lparam , dparam , sparam ) ;
}
void OnTick ( )
{
TickEvent ( ) ;
}
void OnTimer ( )
{
TimerEvent ( ) ;
}