27 lines
1.2 KiB
MQL4
27 lines
1.2 KiB
MQL4
//+------------------------------------------------------------------+
|
|
//| Secrets.mqh |
|
|
//| Copyright 2025, Niquel Mendoza. |
|
|
//| https://www.mql5.com/es/users/nique_372 |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2025, Niquel Mendoza."
|
|
#property link "https://www.mql5.com/es/users/nique_372"
|
|
#property strict
|
|
|
|
|
|
#ifndef REPOSECRETS_MQH
|
|
#define REPOSECRETS_MQH
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#define SECRETS_IMPORT_MCPSERVER
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#ifndef PUBLIC_VERSION
|
|
#include <TSNSecrets\\Secrets.mqh>
|
|
#endif // PUBLIC_VERSION
|
|
|
|
#endif // REPOSECRETS_MQH
|
|
//+------------------------------------------------------------------+
|