/v1/screener
Cross-asset board of markets flashing a candlestick pattern, split bullish/bearish
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/candlestickscreener-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/candlestickscreener-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/candlestickscreener-api/v1/screener");
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/candlestickscreener-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Candlestick patterns detected on each market's most recent daily candle. A bullish pattern (hammer, bullish engulfing, etc.) hints up; a bearish one (shooting star, bearish engulfing) hints down; doji is indecision. Patterns are price-action signals, strongest at trend extremes — confirm before trading.",
"class": "commodities",
"assets": [
{
"key": "gold",
"class": "commodities",
"label": "Gold",
"candle": {
"low": 371.88,
"high": 387.21,
"open": 373.96,
"close": 386.32,
"color": "green"
},
"signal": "bullish",
"patterns": [
{
"bias": "bullish",
"pattern": "bullish_engulfing"
}
]
},
{
"key": "silver",
"class": "commodities",
"label": "Silver",
"candle": {
"low": 57.3,
"high": 61.1,
"open": 57.45,
"close": 60.82,
"color": "green"
},
"signal": "bullish",
"patterns": [
{
"bias": "bullish",
"pattern": "bullish_engulfing"
}
]
},
{
"key": "oil",
"class": "commodities",
"label": "Crude Oil",
"candle": {
"low": 127.87,
"high": 135.98,
"open": 134.27,
"close": 128.83,
"color": "red"
},
"signal": "none",
"patterns": []
},
{
"key": "natural_gas",
"class": "commodities",
"label": "Natural Gas",
"candle": {
"low": 11.11,
"high": 11.34,
"open": 11.34,
"close": 11.16,
"color": "red"
},
"signal": "none",
"patterns": []
},
{
"key": "broad_commodities",
"class": "commodities",
"label": "Broad Commodities",
"candle": {
"low": 28.77,
"high": 29.32,
"open": 29.17,
"close": 28.85,
"color": "red"
},
"signal": "bearish",
"patterns": [
{
"bias": "bearish",
"pattern": "bearish_engulfing"
…