---
title: pvo (PVO)
description: Volume indicator. Standard math aligned with TradingView Pine Script.
---

# `pvo` — PVO

> Category: **Volume** · Standard

::: 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/pvo) (summary_focus / signals / caveats).
:::

This is a volume indicator.
Math is aligned with TradingView Pine Script.

## Parameters

| Parameter | Type | Default |
|------|------|--------|
| `fast_len` | int | `12` |
| `slow_len` | int | `26` |
| `sig_len` | int | `9` |

## Output columns

| Column |
|------|
| `pvo` |
| `pvo_hist` |
| `pvo_signal` |

## 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": "pvo", "params": {"fast_len": 12, "slow_len": 26, "sig_len": 9}}]
  }' \
  https://api.mobiusquant.ai/api/indicators
```

## Full interpretation guide

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

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

## Related indicators

[chaikin_oscillator](./chaikin_oscillator) · [cmf](./cmf) · [cvd](./cvd) · [kvo](./kvo) · [obv](./obv) · [vwap](./vwap)

---

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