---
title: mobius_trend (Mobius Trend)
description: Trend indicator. MobiusQuant proprietary.
---

# `mobius_trend` — Mobius Trend

> Category: **Trend** · Composite · 🧪 Möbius Lab

::: tip For Skill / AI Agent integrations
When you `POST /api/indicators?explain=true`, the response carries a `knowledge` block with this indicator's interpretation rubric. **Pass it to your LLM together with the numeric data** — don't make the LLM guess thresholds from memory. Full rubric lives at the [Chinese page](https://docs.mobiusquant.ai/zh/indicators/mobius_trend) (summary_focus / signals / caveats).
:::

This is a trend indicator developed in-house by MobiusQuant.
Math is aligned with TradingView Pine Script.

## Parameters

| Parameter | Type | Default |
|------|------|--------|
| `left_bars` | int | `15` |
| `right_bars` | int | `14` |
| `offset` | float | `1.75` |
| `atr_period` | int | `200` |

## Output columns

| Column |
|------|
| `trend` |
| `trend_value` |

## Example call

```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
```

## Full interpretation guide

The full description, signal interpretation, caveats and analysis focus points are
documented in Chinese at:

[mobius_trend (中文详情)](https://docs.mobiusquant.ai/zh/indicators/mobius_trend)

## Related indicators

[alligator](./alligator) · [alma](./alma) · [ema](./ema) · [hma](./hma) · [lsma](./lsma) · [mcginley_dynamic](./mcginley_dynamic) · [parabolic_sar](./parabolic_sar) · [smc](./smc)

---

_Auto-generated by `scripts/sync-indicators.mjs` from `engine_indicator_knowledge` + engine runtime introspect. Manual edits will be overwritten on next sync._
