OpcoesCustomMomentum/OpcoesCustomMomentum.mq5

35 lines
1.3 KiB
MQL5
Raw Permalink Normal View History

2025-05-30 16:14:25 +02:00
//+------------------------------------------------------------------+
//| OpcoesCustomMomentum.mq5 |
//| Copyright 2018, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//--- input parameters
input int Input1;
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
}
//+------------------------------------------------------------------+