Perform iSetCustomMax(string mode) parameter evaluation – Different – 19 February 2022

Date:


Perform iSetCustomMax(string mode) parameter evaluation
函数 iSetCustomMax(string mode) 参数解析

Product Hyperlink 产品链接:https://www.mql5.com/en/market/product/78103

For English:

/*
parameter evaluation mode = "...":
//---常用
"CUSTOM_TBValue", // TraderBlazer程序化软件上TB系数。
"CUSTOM_Sharpe_MT5", "CUSTOM_Sharpe_Balance", "CUSTOM_Sharpe_Price", // MT5内置夏普比,资金波动夏普比,价格波动夏普比
"CUSTOM_SQN", "CUSTOM_SQN_Price", // 系统质量编号,以价格波动计算的SQN
"CUSTOM_WinRate_Total", "CUSTOM_WinRate_Long", "CUSTOM_WinRate_Short", // 总胜率,做多胜率,多空胜率
"CUSTOM_NetProfit", "CUSTOM_AverageProfit", "CUSTOM_AverageLoss", // 净利润,平均利润,平均亏损
"CUSTOM_PnL_Ratio", "CUSTOM_ProfitFactor", // 盈亏比,盈利因子
"CUSTOM_RecoveryFactor", "CUSTOM_ExpectedProfit", // 恢复因子,预期收益
//---最佳仓位(如果你没有对理论进行深入研究,不建议参考)
"CUSTOM_Kelly_OccupyLot_Lever", // 根据凯利公式计算保证金占用仓位的杠杆
"CUSTOM_Kelly_LossLot_Percent", // 根据凯利公式计算保证金止损仓位的百分比
"CUSTOM_Vince_F", // Vince的TWR方法最佳f
//---回撤
"CUSTOM_EquityMin", "CUSTOM_MarginMin", // 最小净值, 最小保证金
"CUSTOM_MaxRelativeDDPercent", "CUSTOM_MaxRelativeDD", // 最大相对回撤比, 最大相对回撤比的数额
"CUSTOM_MaxAbsoluteDD", "CUSTOM_MaxAbsoluteDDPercent", // 最大的绝对回撤值, 最大的绝对回撤值占比
//---线性回归
"CUSTOM_LineReturn1", "CUSTOM_LineReturn2", // 余额与交易次数线性回归 "Y= linereturn1*X + linereturn2"
"CUSTOM_LRCorrelation", "CUSTOM_LRStandardError", // 真实余额与线性模拟余额相关系数, 标准差
//---增长亏损率
"CUSTOM_GrossProfit", "CUSTOM_GrossLoss", // 盈利总和, 亏损总和
"CUSTOM_AHPR", "CUSTOM_GHPR", // 算数平均余额增长率, 几何平均余额增长率
"CUSTOM_NoVolGeoProfitPercent", "CUSTOM_NoVolGeoLossPercent", // 无仓位几何获利百分比, 无仓位几何亏损百分比
//---交易数量
"CUSTOM_TotalTraders", "CUSTOM_LongTraders", "CUSTOM_ShortTraders", // 总交易数,做多交易数,做空交易数
"CUSTOM_ProfitTrades", "CUSTOM_LossTrades", // 盈利交易数,亏损交易数
//---连续
"CUSTOM_MaxConWinsTrades", "CUSTOM_MaxConWins", // (int)最长获利序列, 最长获利序列利润总和
"CUSTOM_MaxConFailTrades", "CUSTOM_MaxConFails", // (int)最长亏损序列, 最长亏损序列亏损总和
"CUSTOM_MaxConProfit", "CUSTOM_MaxConProfitTrades", // 最大连续收益, (int)最大连续收益序列数
"CUSTOM_MaxConLoss", "CUSTOM_MaxConLossTrades", // 最大连续亏损, (int)最大连续亏损序列数
"CUSTOM_AverageConWins", "CUSTOM_AverageConFails", // (int)平均连续获胜数, (int)平均连续亏损数
"CUSTOM_MaxProfitTrade", "CUSTOM_MaxLossTrade", // 获利交易中的最大值, 亏损交易中的最大值
*/

中文说明:

/*
参数解析 mode = "...":
//---常用
"CUSTOM_TBValue", // TraderBlazer程序化软件上TB系数。
"CUSTOM_Sharpe_MT5", "CUSTOM_Sharpe_Balance", "CUSTOM_Sharpe_Price", // MT5内置夏普比,资金波动夏普比,价格波动夏普比
"CUSTOM_SQN", "CUSTOM_SQN_Price", // 系统质量编号,以价格波动计算的SQN
"CUSTOM_WinRate_Total", "CUSTOM_WinRate_Long", "CUSTOM_WinRate_Short", // 总胜率,做多胜率,多空胜率
"CUSTOM_NetProfit", "CUSTOM_AverageProfit", "CUSTOM_AverageLoss", // 净利润,平均利润,平均亏损
"CUSTOM_PnL_Ratio", "CUSTOM_ProfitFactor", // 盈亏比,盈利因子
"CUSTOM_RecoveryFactor", "CUSTOM_ExpectedProfit", // 恢复因子,预期收益
//---最佳仓位(如果你没有对理论进行深入研究,不建议参考)
"CUSTOM_Kelly_OccupyLot_Lever", // 根据凯利公式计算保证金占用仓位的杠杆
"CUSTOM_Kelly_LossLot_Percent", // 根据凯利公式计算保证金止损仓位的百分比
"CUSTOM_Vince_F", // Vince的TWR方法最佳f
//---回撤
"CUSTOM_EquityMin", "CUSTOM_MarginMin", // 最小净值, 最小保证金
"CUSTOM_MaxRelativeDDPercent", "CUSTOM_MaxRelativeDD", // 最大相对回撤比, 最大相对回撤比的数额
"CUSTOM_MaxAbsoluteDD", "CUSTOM_MaxAbsoluteDDPercent", // 最大的绝对回撤值, 最大的绝对回撤值占比
//---线性回归
"CUSTOM_LineReturn1", "CUSTOM_LineReturn2", // 余额与交易次数线性回归 "Y= linereturn1*X + linereturn2"
"CUSTOM_LRCorrelation", "CUSTOM_LRStandardError", // 真实余额与线性模拟余额相关系数, 标准差
//---增长亏损率
"CUSTOM_GrossProfit", "CUSTOM_GrossLoss", // 盈利总和, 亏损总和
"CUSTOM_AHPR", "CUSTOM_GHPR", // 算数平均余额增长率, 几何平均余额增长率
"CUSTOM_NoVolGeoProfitPercent", "CUSTOM_NoVolGeoLossPercent", // 无仓位几何获利百分比, 无仓位几何亏损百分比
//---交易数量
"CUSTOM_TotalTraders", "CUSTOM_LongTraders", "CUSTOM_ShortTraders", // 总交易数,做多交易数,做空交易数
"CUSTOM_ProfitTrades", "CUSTOM_LossTrades", // 盈利交易数,亏损交易数
//---连续
"CUSTOM_MaxConWinsTrades", "CUSTOM_MaxConWins", // (int)最长获利序列, 最长获利序列利润总和
"CUSTOM_MaxConFailTrades", "CUSTOM_MaxConFails", // (int)最长亏损序列, 最长亏损序列亏损总和
"CUSTOM_MaxConProfit", "CUSTOM_MaxConProfitTrades", // 最大连续收益, (int)最大连续收益序列数
"CUSTOM_MaxConLoss", "CUSTOM_MaxConLossTrades", // 最大连续亏损, (int)最大连续亏损序列数
"CUSTOM_AverageConWins", "CUSTOM_AverageConFails", // (int)平均连续获胜数, (int)平均连续亏损数
"CUSTOM_MaxProfitTrade", "CUSTOM_MaxLossTrade", // 获利交易中的最大值, 亏损交易中的最大值
*/

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Share post:

Subscribe

spot_imgspot_img

Popular

More like this
Related

7 Bizarre Details About Black Holes

Black holes are maybe probably the most...

Deal with and Optimize Massive Product Catalogs in Magento

Dealing with and optimizing giant product catalogs in...

Assembly Minutes Matter — My Suggestions and Methods for Be aware-Taking

I've taken my justifiable share of notes as...