2026-01-19 09:09:23 -03:00
//+------------------------------------------------------------------+
//| FiatUno-WINQ24.mq5 |
2026-01-19 09:11:01 -03:00
//| Copyright 2024, MetaQuotes Ltd. |
2026-01-19 09:09:23 -03:00
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit ( )
{
2026-01-19 09:11:01 -03:00
//--- create timer
EventSetTimer ( 60 ) ;
2026-01-19 09:09:23 -03:00
//---
return ( INIT_SUCCEEDED ) ;
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit ( const int reason )
{
2026-01-19 09:11:01 -03:00
//--- destroy timer
EventKillTimer ( ) ;
2026-01-19 09:09:23 -03:00
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick ( )
{
//---
}
//+------------------------------------------------------------------+
2026-01-19 09:11:01 -03:00
//| Timer function |
//+------------------------------------------------------------------+
void OnTimer ( )
{
//---
}
//+------------------------------------------------------------------+
//| Trade function |
//+------------------------------------------------------------------+
void OnTrade ( )
{
//---
}
//+------------------------------------------------------------------+
//| TradeTransaction function |
//+------------------------------------------------------------------+
void OnTradeTransaction ( const MqlTradeTransaction & trans ,
const MqlTradeRequest & request ,
const MqlTradeResult & result )
{
//---
}
//+------------------------------------------------------------------+
//| Tester function |
//+------------------------------------------------------------------+
double OnTester ( )
{
//---
double ret = 0.0 ;
//---
//---
return ( ret ) ;
}
//+------------------------------------------------------------------+
//| TesterInit function |
//+------------------------------------------------------------------+
void OnTesterInit ( )
{
//---
}
//+------------------------------------------------------------------+
//| TesterPass function |
//+------------------------------------------------------------------+
void OnTesterPass ( )
{
//---
}
//+------------------------------------------------------------------+
//| TesterDeinit function |
//+------------------------------------------------------------------+
void OnTesterDeinit ( )
{
//---
}
//+------------------------------------------------------------------+
//| ChartEvent function |
//+------------------------------------------------------------------+
void OnChartEvent ( const int id ,
const long & lparam ,
const double & dparam ,
const string & sparam )
{
//---
}
//+------------------------------------------------------------------+
//| BookEvent function |
//+------------------------------------------------------------------+
void OnBookEvent ( const string & symbol )
{
//---
}
//+------------------------------------------------------------------+