You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Candles where ATR exceeded a multiple of the series average
GetHeatmapAsync(symbol, timeframe)
Day-of-Week × Hour-of-Day average true range heatmap
Available on Starter plan and above. Free plan is not supported.
Insight (client.Insight) — Pro plan required
Method
Description
GetNextAsync(symbol, timeframe)
Next-candle forecast: bias, bull/bear score, ATR-based targets, and 5 signals
GetTrendAsync(symbol, timeframe)
Trend classification using EMA alignment and ADX strength
GetSetupAsync(symbol, timeframe)
Market setup detection: Breakout, Pullback, Range, or None
GetConfluenceAsync(symbol, timeframe)
Actionable signal (Buy / Sell / Neutral) with strength rating and scored reasons
GetScoreAsync(symbol, timeframe)
Composite 0–100 bullish/bearish score from five equally-weighted components
Multi-Timeframe (client.MultiTimeframe) — Pro plan required
Method
Description
GetAsync(symbol)
Trend direction across all plan-allowed timeframes in a single call
Liquidity (client.Liquidity) — Pro plan required
Method
Description
GetZonesAsync(symbol, timeframe)
Key S/R clusters acting as liquidity pools, sorted nearest-first
Order Flow (client.OrderFlow) — Pro plan required
Method
Description
GetImbalanceAsync(symbol, timeframe)
Bullish/Bearish/Neutral imbalance from last 50 candles + abnormal-body zones
Stop Hunt (client.StopHunt) — Pro plan required
Method
Description
GetZonesAsync(symbol, timeframe)
Stop-cluster zones beyond key S/R levels; flags recently hunted levels
Anomaly (client.Anomaly) — Pro plan required
Method
Description
GetAsync(symbol, timeframe)
Scans last 50 candles for PriceSpike, UnusualVolume, and FakeBreakout anomalies
Manipulation Risk (client.Manipulation) — Pro plan required
Method
Description
GetRiskAsync(symbol, timeframe)
Composite manipulation risk score (0–100) from wick ratio, volume divergence, and fake breakouts
WebSocket (client.WebSocket)
Method
Parameters
Plan
Description
StreamPriceAsync
symbol, timeframe, ct
Socket-enabled
Real-time price ticks as IAsyncEnumerable<PriceTickerResult>
StreamCandlesAsync
symbol, timeframe, ct
Socket-enabled
Real-time OHLCV candle updates
StreamOrderFlowImbalanceAsync
symbol, timeframe, ct
PRO+
Live order flow imbalance updates
StreamMultiTimeframeAsync
symbol, ct
PRO+
Trend direction across all timeframes, pushed on any candle update
StreamMarketAsync
ct
Socket-enabled
Full market snapshot pushed on every H1 tick
Requires a plan with IsSocketSupport = true.
PRO+ endpoints additionally require the PRO plan or above.
Endpoints: wss://api.realmarketapi.com/{price|candles|orderflow/imbalance|multi-timeframe|market}
MCP — Model Context Protocol (client.Mcp)
Exposes the full RealMarket API as MCP tools, callable from AI assistants (GitHub Copilot, Claude, etc.) and from .NET code.
Endpoint: https://api.realmarketapi.com/mcp
Indicator and Advanced Analysis MCP tools require a Pro plan or higher.
Volatility MCP tools require a Starter plan or higher.
Notes
Pro plan required for: Indicator, Insight, Multi-Timeframe, Liquidity, Order Flow, Stop Hunt, Anomaly, and Manipulation endpoints.
Starter plan required for Volatility endpoints (Free plan not supported).
WebSocket streaming requires a plan with IsSocketSupport = true. PRO+ endpoints additionally require the PRO plan.
MCP calls do not consume your request quota — they are treated as tooling/agent access.
Market-aware quota: REST requests for symbols whose market is currently closed do not count against your monthly quota.
Historical data availability depends on your plan's HistoricalRangeMonth.
GET /me (client.Account.GetMeAsync()) does not consume your request quota.
All methods accept an optional CancellationToken.
Targets .NET 10.
About
Official .NET SDK for the RealMarket API. Provides strongly-typed, async access to real-time market prices, OHLCV candles, historical data, and technical indicators (SMA, EMA, RSI, MACD, Fibonacci, Support/Resistance) with built-in dependency injection support.