Fetch cryptocurrency OHLCV candle data and judge whether the market is in a one-way bullish or bearish trend. Use when the user asks to pull crypto market da...
编程
Oi Divergence
试用Open interest divergence from price — detects smart-money positioning
它能做什么
Open interest divergence from price — detects smart-money positioning
技能文档
oi-divergence
What It Does
Open interest divergence from price — detects smart-money positioning. This signal is computed in real time from APEX Runner's live autonomous trading system operating across Kraken, Coinbase Advanced Trade, and Hyperliquid — not from backtests or third-party aggregators.
When to Use
- To detect divergence between OI and price
- Before directional trades
- To identify smart money vs retail positioning
How to Use
The agent makes an x402-authenticated GET request to:
https://apexrunner.ai/signals/oi-divergence
The x402 client handles payment authorisation automatically. No API key, no account, no subscription required — just an EVM wallet with USDC on Base mainnet.
# Example using the x402-python client
from x402.client import x402_get
response = x402_get(
url="https://apexrunner.ai/signals/oi-divergence",
private_key=os.environ["EVM_PRIVATE_KEY"]
)
print(response.json())
Example Response
{
"divergence": true,
"oi_trend": "rising",
"price_trend": "falling",
"signal": "bearish"
}
Pricing
$1.00/call — standard price
Early adopters automatically receive 30% off ($0.70/call) until 2026-09-21. Discount tiers apply automatically based on wallet call history:
- Early Adopter (0–9 calls): 30% off
- Engaged (10–49 calls): 15% off
- Loyal (50–199 calls): 15% permanent
- VIP (200+ calls): 20% permanent
Check your tier: https://apexrunner.ai/signals/my-pricing
Related Signals
APEX Runner — autonomous AI crypto trading signals. apexrunner.ai
相关技能
Forecast where a stock will close at option expiration and recommend options plays. Use when the user asks for an options forecast, expected close range, CI bands, or trade ideas for a specific ticker and expiration. Produces a Breeden-Litzenberger risk-neutral density forecast (median, 50/80/95% CI
Mean-reversion opportunity scan across RANGING and CHOPPY regimes
DCA entry signal with gate status, regime, and F&G conditions
Use when an OpenClaw user needs fast NBA opportunity scanning, NBA-only /fair pricing, or deep analysis of one specific Polymarket market or event in any dom...
当用户要用量能(交易量)与持仓兴趣来验证价格信号、判断趋势健康度,或理解胀爆/抛售高潮、交易商分类报告(COT)等时激活。 核心是"价格第一、量能第二",量能只是验证价格的旁证。 不适用于:单纯画价格线(转 trend-tools)、摆动指数超买超卖(转 oscillators-contrarian)。 关键 trigger 词:成交量验证、持仓兴趣、量价背离、突破量能、胀爆、抛售高潮、COT、交易商分类报告。 Activate when the user wants to use volume and open interest to confirm price signals, judge trend health, or understand blowoffs/selling climaxes and the COT (commitments of traders) report. The core is "price first, volume second" - volume is only corroborating evidence. Not applicable: simply drawing price lines (-> trend-tools), oscillator overbought/oversold (-> oscillators-contrarian). Key trigger words: volume confirmation, open interest, volume-price divergence, breakout volume, blowoff, selling climax, COT, trader classification report.