Zum Inhalt springen
GET /v1/cmf

Chaikin Money Flow (buying/selling pressure)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/volumeindicators-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/volumeindicators-api/v1/cmf" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volumeindicators-api/v1/cmf", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volumeindicators-api/v1/cmf");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/volumeindicators-api/v1/cmf",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "cmf": 0.333333,
        "note": "Chaikin Money Flow = sum(money-flow volume) / sum(volume) over the period; money-flow multiplier = ((close-low)-(high-close))/(high-low). Ranges -1..+1; positive = buying pressure.",
        "period": 20,
        "source": "VOLUME",
        "candles": 22,
        "pressure": "buying"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:59.712Z",
        "request_id": "8793f860-6e17-45a5-9c71-7573b00fcf70"
    },
    "status": "ok",
    "message": "CMF computed",
    "success": true
}