39 lines
1.7 KiB
MQL5
39 lines
1.7 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| helpers.mqh |
|
|
//| Copyright 2025, MetaQuotes Ltd. |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright 2025, MetaQuotes Ltd."
|
|
#property link "https://www.mql5.com"
|
|
#include"error.mqh"
|
|
#include"gamma.mqh"
|
|
#include"igam.mqh"
|
|
#include"igam_asymp_coeff.mqh"
|
|
#include"lanczos.mqh"
|
|
#include"ndtr.mqh"
|
|
#include"polevl.mqh"
|
|
#include"trig.mqh"
|
|
#include"unity.mqh"
|
|
#include"zeta.mqh"
|
|
#include"wald.mqh"
|
|
|
|
//+------------------------------------------------------------------+
|
|
//| defines |
|
|
//+------------------------------------------------------------------+
|
|
// #define MacrosHello "Hello, world!"
|
|
// #define MacrosYear 2010
|
|
//+------------------------------------------------------------------+
|
|
//| DLL imports |
|
|
//+------------------------------------------------------------------+
|
|
// #import "user32.dll"
|
|
// int SendMessageA(int hWnd,int Msg,int wParam,int lParam);
|
|
// #import "my_expert.dll"
|
|
// int ExpertRecalculate(int wParam,int lParam);
|
|
// #import
|
|
//+------------------------------------------------------------------+
|
|
//| EX5 imports |
|
|
//+------------------------------------------------------------------+
|
|
// #import "stdlib.ex5"
|
|
// string ErrorDescription(int error_code);
|
|
// #import
|
|
//+------------------------------------------------------------------+
|