Skip to content

Instantly share code, notes, and snippets.

@cv2k10
Created August 10, 2023 02:37
Show Gist options
  • Save cv2k10/c182fcd2d1bc4ff69cca4d23860f2ef5 to your computer and use it in GitHub Desktop.
Save cv2k10/c182fcd2d1bc4ff69cca4d23860f2ef5 to your computer and use it in GitHub Desktop.
new MT5 Expert Advisor setup
//+------------------------------------------------------------------+
//| cv.mq5 |
//| cv |
//| |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment