📺Your Ultimate subscription includes the COTInsight TradingView indicator — add your TradingView username in Account settings to activate it.
Fetching COT data — 300+ instruments take ~60s on first run.
Loading…
AI Analyst Insights
Z-Score Context
Market Concentration
Participant Positioning
Participant Interpretation
Net Speculator Positioning
Historical Outcomes by Z-Score Bucket
Bias Rationale
⚔
Metrics
Positioning Comparison
Participant Positioning
Bias & Rationale
Compare with…
Account
Upgrade to Ultimate
Unlock AI analyst insights, an exclusive TradingView indicator, VS instrument comparison, historical outcome statistics (full archive), PDF reports, and API access. You pay only the difference for the time remaining on your current billing period — nothing more.
import requests
API_KEY = "YOUR_KEY"
BASE = "https://app.cotinsight.com"
r = requests.get(
f"{BASE}/api/v1/results",
headers={"X-API-Key": API_KEY},
params={"category": "Energy"}
)
data = r.json()
for item in data["results"]:
if item["alert"]:
print(item["name"], item["z_score"])