/v1/bollinger
Bollinger Bands with bandwidth and %B
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/technicals-api/v1/bollinger" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/technicals-api/v1/bollinger", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/technicals-api/v1/bollinger");
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/technicals-api/v1/bollinger",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"lower": 97.085915,
"upper": 114.321085,
"middle": 105.7035,
"period": 20,
"source": "TECHNICALS",
"stddev": 2,
"bandwidth": 0.163052,
"indicator": "bollinger",
"percent_b": 0.3971,
"lower_series": [
95.358334,
94.936218,
94.523246,
94.223272,
94.08938,
94.120519,
94.260257,
94.403919,
94.426464,
94.241541,
93.852356,
93.353421,
92.874945,
92.536361,
92.426882,
92.598685,
93.06891,
93.819155,
94.798605,
95.925629,
97.085915
],
"upper_series": [
109.488666,
109.635782,
109.685754,
109.574728,
109.29462,
108.890481,
108.461743,
108.149081,
108.106536,
108.439459,
109.155644,
110.158579,
111.305055,
112.452639,
113.481118,
114.298315,
114.84609,
115.096845,
115.058395,
114.773371,
114.321085
],
"middle_series": [
102.4235,
102.286,
102.1045,
101.899,
101.692,
101.5055,
101.361,
101.2765,
101.2665,
101.3405,
101.504,
101.756,
102.09,
102.4945,
102.954,
103.4485,
103.9575,
104.458,
104.9285,
105.3495,
105.7035
]
},
"meta": {
"timestamp": "2026-06-10T22:56:27.531Z",
"request_id": "ceb8cae3-e758-4628-a3da-f18c325a139b"
},
"status": "ok",
"message": "Bollinger Bands computed",
"success": true
}