比赛分析
投注分配方案¥400
本金 ¥400 · 核心锁仓 + 分散增益 · 保本优先
当前算法信息
算法版本 V65 PS_d+XG v10
最后更新 原始版本
核心函数 calcPSd · calcLevel · calcRecommendation
覆盖状态 未覆盖(使用默认算法)
当前关键参数
等级判定阈值
0.65
强推 ≥
0.45
谨慎 ≥
0.30
冷门升级 ≥
PS_d 公式
|1/胜SP - 1/负SP|
推荐规则
胜SP ≤ 负SP → 主胜,否则客胜
上传参数配置

上传 JSON 格式的配置文件,可调整等级阈值、PS_d公式参数等。覆盖后立即生效,刷新页面保留。

查看配置文件格式说明
{
  "version": "V65-custom",
  "thresholds": {
    "strong": 0.65,
    "cautious": 0.45,
    "coldUpgrade": 0.30
  },
  "psdFormula": "default",
  "recRule": "default",
  "leagueOverrides": {
    "英超": {"s": 0.20, "m": 0.12},
    "巴甲": {"s": 0.25, "m": 0.15}
  }
}
上传算法覆盖文件

上传 JS 文件可覆盖核心计算函数(calcPSd、calcLevel、calcRecommendation)。适合重大算法升级。

查看算法文件格式说明
// 覆盖 calcPSd 函数
function calcPSd(spWin, spLose) {
  // 你的新算法
  return Math.abs(1/spWin - 1/spLose) * 1.1;
}

// 覆盖 calcLevel 函数
function calcLevel(psD, league) {
  // 你的新等级判定逻辑
  if (psD >= 0.60) return {level:"强推", cls:"强推"};
  if (psD >= 0.35) return {level:"谨慎", cls:"谨慎"};
  return {level:"观望", cls:"观望"};
}

// 覆盖 calcRecommendation 函数
function calcRecommendation(spWin, spLose) {
  // 你的新推荐逻辑
  var ratio = spLose / spWin;
  if (ratio >= 1.5) return "主胜";
  if (ratio <= 0.67) return "客胜";
  return "平局";
}
操作