forked from airat77786/MQL5Book
32 lines
1.6 KiB
MQL5
32 lines
1.6 KiB
MQL5
//+------------------------------------------------------------------+
| |||
//| AllInOne.mq5 |
| |||
//| Copyright 2021, MetaQuotes Ltd. |
| |||
//| https://www.mql5.com |
| |||
//+------------------------------------------------------------------+
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Uncomment next line to get a service |
| |||
//| NB: #define _OnStart OnStart should be uncommented too |
| |||
//+------------------------------------------------------------------+
| |||
//#property service
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Uncomment next line to get a library |
| |||
//+------------------------------------------------------------------+
| |||
//#property library
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Uncomment next line for a script or |
| |||
//| for a service (if #property service is enabled) |
| |||
//+------------------------------------------------------------------+
| |||
//#define _OnStart OnStart
| |||
| |||
//+------------------------------------------------------------------+
| |||
//| Uncomment one of the 2 next lines to get an indicator |
| |||
//+------------------------------------------------------------------+
| |||
//#define _OnCalculate1 OnCalculate
| |||
//#define _OnCalculate2 OnCalculate
| |||
| |||
#include "AllInOne.mqh"
| |||
| |||
//+------------------------------------------------------------------+
|