mobius_trend
类别:趋势 · 复合指标 · 🧪 莫比乌斯实验室 · 关键词:mobius_trend, mobius trend, Mobius 趋势, Mobius Trend, 多空方向, 趋势方向, 趋势翻转, 多头
给 Skill / AI Agent 的提示
调 POST /api/indicators?explain=true 时,本页下方的 解读重点 / 信号 / 注意事项 内容会以 knowledge 字段塞进响应。把它和数值一起喂给下游 LLM,杜绝幻觉规则,不要让 LLM 自己猜阈值。
基于 ATR 偏移枢轴高低点的趋势跟踪指标,输出多空方向和趋势基准线
Mobius 趋势,输出多空方向和趋势基准线价格。
参数
| 参数 | 类型 | 默认值 |
|---|---|---|
left_bars | int | 15 |
right_bars | int | 14 |
offset | float | 1.75 |
atr_period | int | 200 |
输出列
| 列名 | 含义 |
|---|---|
trend | 趋势方向,1=多头,-1=空头 |
trend_value | 趋势基准线价格,多头时为下方支撑位,空头时为上方压力位 |
解读重点
- 当前三个周期各自的趋势方向(多头/空头),以及三周期是否一致
- 近期是否发生过趋势翻转(trend 值出现变化),翻转时间换算为相对时间(如'约 4 小时前');翻转后是否经历过回测或二次确认
- 当前价格与 trend_value 的距离是充裕(安全边际大、趋势稳健)还是临近(有翻转风险);trend_value 可作为关键支撑/压力位报出
- 若三个周期方向不一致,需指出哪个周期已翻转、哪个尚未,以及分歧的含义
信号
| 信号 | 含义 |
|---|---|
bearish | trend=-1,市场处于空头趋势,价格低于趋势基准线 |
bullish | trend=1,市场处于多头趋势,价格高于趋势基准线 |
distance | 当前价格与 trend_value 的距离反映趋势安全边际,距离越大趋势越稳健 |
flip_to_bear | trend 从 1 翻转为 -1,趋势切换为空头,视为强烈卖出信号 |
flip_to_bull | trend 从 -1 翻转为 1,趋势切换为多头,视为强烈买入信号 |
调用示例
bash
curl -X POST -H "Authorization: Bearer mq_xxx" \
-H "Content-Type: application/json" \
-d '{
"exchange": "binance",
"market": "perp",
"symbol": "BTCUSDT",
"interval": "5m",
"limit": 100,
"calc": [{"name": "mobius_trend", "params": {"left_bars": 15, "right_bars": 14, "offset": 1.75, "atr_period": 200}}]
}' \
https://api.mobiusquant.ai/api/indicators同类指标
alligator · alma · ema · hma · lsma · mcginley_dynamic · parabolic_sar · smc
本页由 scripts/sync-indicators.mjs 自动生成。手动编辑会被下次 sync 覆盖。