/v1/screener
Rank the universe from strongest accumulation to heaviest distribution
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/closestrength-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/closestrength-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/closestrength-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/closestrength-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Ranked by recent_clv over window_days of daily OHLC. CLV is where the close sits in the day's range, -1 (on the low) to +1 (on the high). A positive average means closes persistently in the upper half (accumulation); recent_clv is the last 20 days (current pressure). Read fresh per call, nothing cached.",
"class": "all",
"count": 21,
"metric": "recent_clv",
"source": "Yahoo Finance",
"results": [
{
"name": "Technology Sector",
"rank": 1,
"class": "sector",
"symbol": "XLK",
"avg_clv": 0.149,
"pressure": "accumulation",
"available": true,
"recent_clv": 0.199,
"current_clv": 0.874,
"recent_days": 20,
"observations": 252,
"lower_third_close_pct": 24.6,
"upper_third_close_pct": 44.4
},
{
"name": "Nasdaq 100 ETF",
"rank": 2,
"class": "index",
"symbol": "QQQ",
"avg_clv": 0.148,
"pressure": "accumulation",
"available": true,
"recent_clv": 0.16,
"current_clv": 0.893,
"recent_days": 20,
"observations": 252,
"lower_third_close_pct": 25,
"upper_third_close_pct": 44.4
},
{
"name": "US Small Caps",
"rank": 3,
"class": "index",
"symbol": "IWM",
"avg_clv": 0.075,
"pressure": "accumulation",
"available": true,
"recent_clv": 0.148,
"current_clv": 0.814,
"recent_days": 20,
"observations": 252,
"lower_third_close_pct": 32.5,
"upper_third_close_pct": 42.1
},
{
"name": "Emerging Markets",
"rank": 4,
"class": "index",
"symbol": "EEM",
"avg_clv": 0.159,
"pressure": "accumulation",
"available": true,
"recent_clv": 0.118,
"current_clv": 0.917,
"recent_days": 20,
"observations": 252,
"lower_third_close_pct": 25.8,
"upper_third_close_pct": 44.8
},
{
"name": "Crude Oil ETF",
"rank": 5,
"class": "commodity",
"symbol": "USO",
"avg_clv": 0.079,
"pressure": "balanced",
"available": true,
"recent_clv": 0.097,
"current_clv": -0.763,
"recent_days": 20,
"observations": 252,
"lower_third_close_pct": 27
…