1 Star 0 Fork 0

qin_yi/EA31337-classes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Math.mqh 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
//+------------------------------------------------------------------+
//| EA31337 framework |
//| Copyright 2016-2020, 31337 Investments Ltd |
//| https://github.com/EA31337 |
//+------------------------------------------------------------------+
/*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Prevents processing this includes file for the second time.
#ifndef MATH_MQH
#define MATH_MQH
// Includes.
#include "Condition.enum.h"
#define NEAR_ZERO 0.00001
// Struct.
struct MathEquation {
ENUM_MATH_CONDITION op;
MqlParam args[2];
};
// Includes standard C++ library for non-MQL code.
#ifndef __MQLBUILD__
#include <cfloat>
#include <cmath>
using namespace std;
#endif
/**
* Class to provide math related methods.
*/
class Math {
protected:
public:
Math(MqlParam &_arg1, MqlParam &_arg2) {
}
/* Conditions */
/**
* Checks for math condition.
*
* @param ENUM_MATH_CONDITION _cond
* Math condition.
* @param MqlParam[] _args
* Condition arguments.
* @return
* Returns true when the condition is met.
*/
bool CheckCondition(ENUM_MATH_CONDITION _cond, MqlParam &_args[]) {
switch (_cond) {
case MATH_COND_EQ:
// @todo
return false;
case MATH_COND_GT:
// @todo
return false;
case MATH_COND_LE:
// @todo
return false;
default:
//logger.Error(StringFormat("Invalid math condition: %s!", EnumToString(_cond), __FUNCTION_LINE__));
return false;
}
}
bool CheckCondition(ENUM_MATH_CONDITION _cond) {
MqlParam _args[] = {};
return Math::CheckCondition(_cond, _args);
}
};
#endif // MATH_MQH
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qinyi.git.org/EA31337-classes.git
git@gitee.com:qinyi.git.org/EA31337-classes.git
qinyi.git.org
EA31337-classes
EA31337-classes
master

搜索帮助