IntrinioRealtimeOptions 6.3.0
See the version list below for details.
dotnet add package IntrinioRealtimeOptions --version 6.3.0
NuGet\Install-Package IntrinioRealtimeOptions -Version 6.3.0
<PackageReference Include="IntrinioRealtimeOptions" Version="6.3.0" />
paket add IntrinioRealtimeOptions --version 6.3.0
#r "nuget: IntrinioRealtimeOptions, 6.3.0"
// Install IntrinioRealtimeOptions as a Cake Addin #addin nuget:?package=IntrinioRealtimeOptions&version=6.3.0 // Install IntrinioRealtimeOptions as a Cake Tool #tool nuget:?package=IntrinioRealtimeOptions&version=6.3.0
intrinio-realtime-options-dotnet-sdk
SDK for working with Intrinio's realtime options feed via WebSocket
Intrinio provides real-time stock option prices via a two-way WebSocket connection. To get started, subscribe to a real-time data feed and follow the instructions below.
Requirements
- .NET 8+
Docker
Add your API key to the config.json file in SampleApp, then
docker compose build
docker compose run example
Installation
Go to Release, download the DLLs, reference it in your project. The DLLs contains dependencies necessary to the SDK.
Sample Project
For a sample .NET project see: intrinio-realtime-options-dotnet-sdk
Features
- Receive streaming, real-time option price updates:
- every trade
- conflated bid and ask
- open interest, open, close, high, low
- unusual activity(block trades, sweeps, whale trades, unusual sweeps)
- Subscribe to updates from individual options contracts (or option chains)
- Subscribe to updates for the entire universe of option contracts (~1.5M option contracts)
Example Usage
using System;
using System.Collections;
using System.Threading;
using Intrinio;
namespace SampleApp
{
class Program
{
private static Client _client = null;
private static CandleStickClient _candleStickClient = null;
private static Timer _timer = null;
private static UInt64 _tradeCount = 0UL;
private static UInt64 _quoteCount = 0UL;
private static UInt64 _refreshCount = 0UL;
private static UInt64 _blockCount = 0UL;
private static UInt64 _sweepCount = 0UL;
private static UInt64 _largeTradeCount = 0UL;
private static UInt64 _unusualSweepCount = 0UL;
private static UInt64 _tradeCandleStickCount = 0UL;
private static UInt64 _tradeCandleStickCountIncomplete = 0UL;
private static UInt64 _AskCandleStickCount = 0UL;
private static UInt64 _AskCandleStickCountIncomplete = 0UL;
private static UInt64 _BidCandleStickCount = 0UL;
private static UInt64 _BidCandleStickCountIncomplete = 0UL;
private static bool _useTradeCandleSticks = false;
private static bool _useQuoteCandleSticks = false;
static void OnQuote(Quote quote)
{
Interlocked.Increment(ref _quoteCount);
}
static void OnTrade(Trade trade)
{
Interlocked.Increment(ref _tradeCount);
}
static void OnRefresh(Refresh refresh)
{
Interlocked.Increment(ref _refreshCount);
}
static void OnUnusualActivity(UnusualActivity unusualActivity)
{
switch (unusualActivity.UnusualActivityType)
{
case UAType.Block:
Interlocked.Increment(ref _blockCount);
break;
case UAType.Sweep:
Interlocked.Increment(ref _sweepCount);
break;
case UAType.Large:
Interlocked.Increment(ref _largeTradeCount);
break;
case UAType.UnusualSweep:
Interlocked.Increment(ref _unusualSweepCount);
break;
default:
Client.Log("Invalid UA type detected: {0}", unusualActivity.UnusualActivityType);
break;
}
}
static void OnTradeCandleStick(TradeCandleStick tradeCandleStick)
{
if (tradeCandleStick.Complete)
{
Interlocked.Increment(ref _tradeCandleStickCount);
}
else
{
Interlocked.Increment(ref _tradeCandleStickCountIncomplete);
}
}
static void OnQuoteCandleStick(QuoteCandleStick quoteCandleStick)
{
if (quoteCandleStick.QuoteType == QuoteType.Ask)
if (quoteCandleStick.Complete)
Interlocked.Increment(ref _AskCandleStickCount);
else
Interlocked.Increment(ref _AskCandleStickCountIncomplete);
else
if (quoteCandleStick.Complete)
Interlocked.Increment(ref _BidCandleStickCount);
else
Interlocked.Increment(ref _BidCandleStickCountIncomplete);
}
static void TimerCallback(object obj)
{
Client client = (Client) obj;
Tuple<UInt64, UInt64, int> stats = client.GetStats();
Client.Log("CLIENT STATS - Data Messages = {0}, Text Messages = {1}, Queue Depth = {2}", stats.Item1, stats.Item2, stats.Item3);
Client.Log("EVENT STATS - Trades = {0}, Quotes = {1}, Refreshes = {2}, Blocks = {3}, Sweeps = {4}, Large Trades = {5}, UnusualSweeps = {6}", _tradeCount, _quoteCount, _refreshCount, _blockCount, _sweepCount, _largeTradeCount, _unusualSweepCount);
if (_useTradeCandleSticks)
Client.Log("TRADE CANDLESTICK STATS - TradeCandleSticks = {0}, TradeCandleSticksIncomplete = {1}", _tradeCandleStickCount, _tradeCandleStickCountIncomplete);
if (_useQuoteCandleSticks)
Client.Log("QUOTE CANDLESTICK STATS - Asks = {0}, Bids = {1}, AsksIncomplete = {2}, BidsIncomplete = {3}", _AskCandleStickCount, _BidCandleStickCount, _AskCandleStickCountIncomplete, _BidCandleStickCountIncomplete);
}
static void Cancel(object sender, ConsoleCancelEventArgs args)
{
Client.Log("Stopping sample app");
_timer.Dispose();
_client.Stop();
if (_useTradeCandleSticks || _useQuoteCandleSticks)
{
_candleStickClient.Stop();
}
Environment.Exit(0);
}
static void Main(string[] args)
{
Client.Log("Starting sample app");
Action<Trade> onTrade = OnTrade;
Action<Quote> onQuote = OnQuote;
// Subscribe the candlestick client to trade and/or quote events as well. It's important any method subscribed this way handles exceptions so as to not cause issues for other subscribers!
//_useTradeCandleSticks = true;
//_useQuoteCandleSticks = true;
//_candleStickClient = new CandleStickClient(OnTradeCandleStick, OnQuoteCandleStick, IntervalType.OneMinute, true);
//onTrade += _candleStickClient.OnTrade;
//onQuote += _candleStickClient.OnQuote;
//_candleStickClient.Start();
// Register only the callbacks that you want.
// Take special care when registering the 'OnQuote' handler as it will increase throughput by ~10x
_client = new Client(onTrade: onTrade, onQuote: onQuote, onRefresh: OnRefresh, onUnusualActivity: OnUnusualActivity);
// Alternatively, you can programmatically make your configuration if you don't want to use a config.json file
// Config.Config config = new Config.Config()
// {
// ApiKey = "",
// Delayed = false, //Use this to specify that even though you have realtime access, for this connection you want delayed 15minute
// NumThreads = 8,
// Provider = Provider.OPRA,
// Symbols = new string[]{"AAPL", "MSFT"}
// };
//Also, if you're not using a config.json to configure serilogs, then you'll need to programmatically configure it:
// var logConfig = new ConfigurationBuilder().SetBasePath(Directory.GetCurrentDirectory()).AddJsonFile("config.json").Build();
// Serilog.Log.Logger = new LoggerConfiguration().ReadFrom.Configuration(logConfig).CreateLogger();
// _client = new Client(onTrade: onTrade, onQuote: onQuote, onRefresh: OnRefresh, onUnusualActivity: OnUnusualActivity, config: config);
_timer = new Timer(TimerCallback, _client, 10_000, 10_000);
// Use this to subscribe to a static list of symbols (option contracts) provided in config.json
_client.Join();
// Use this to subscribe to the entire universe of symbols (option contracts). This requires special permission.
//_client.JoinLobby();
// Use this to subscribe, dynamically, to an option chain (all option contracts for a given underlying symbol).
//_client.Join("AAPL");
// Use this to subscribe, dynamically, to a specific option contract.
//_client.Join("AAPL_230616P250.000");
// Use this to subscribe, dynamically, a list of specific option contracts or option chains.
//string[] contracts = { "GOOG__220408C02870000", "MSFT__220408C00315000", "AAPL__220414C00180000", "TSLA", "GE" };
//_client.Join(contracts);
Console.CancelKeyPress += new ConsoleCancelEventHandler(Cancel);
}
}
}
Handling Quotes
There are millions of options contracts, each with their own feed of activity. We highly encourage you to make your OnTrade, OnQuote, OnUnusualActivity, and OnRefresh methods has short as possible and follow a queue pattern so your app can handle the large volume of activity. Note that quotes (ask and bid updates) comprise 99% of the volume of the entire feed. Be cautious when deciding to receive quote updates.
Providers
Currently, Intrinio offers realtime data for this SDK from the following providers:
- OPRA - Homepage
Data Format
Trade Message
type Trade
- Contract - Identifier for the options contract. This includes the ticker symbol, put/call, expiry, and strike price.
- Exchange - Enum identifying the specific exchange through which the trade occurred
- Price - the price in USD
- Size - the size of the last trade in hundreds (each contract is for 100 shares).
- TotalVolume - The number of contracts traded so far today.
- Timestamp - a Unix timestamp (with microsecond precision)
- Qualifiers - a 4-byte tuple: each byte represents one trade qualifier. See list of possible Trade Qualifiers, below.
- AskPriceAtExecution - the best last ask price in USD
- BidPriceAtExecution - the best last bid price in USD
- UnderlyingPriceAtExecution - the price of the underlying security in USD
Trade Qualifiers
The trade qualifiers field is represented by a tuple containing 4 integers. Each integer can take one of the following values:
0
- Regular transaction2
- Cancel3
- This is the last price and it's cancelled4
- Late but in sequence / sold last late5
- This was the open price and it's cancelled6
- Late report of opening trade and is out of sequence: or set the open7
- Cancel only trade reported8
- Transaction was executed electronically9
- Reopen of a previously halted contract11
- Spread23
- Intermarket Sweep30
- Extended hours33
- Crossed trade including Request For Cross RFC87
- Complex trade with equity leg107
- Auction123
- Stock option trade136
- Ex-Pit trade192
- Message received locally out-of-sequence222
- Combo trade0
- Blank
Each trade can be qualified by a maximum of 4(four) values. The combination of these values can have special values. These special values are:
107, 23
- Single leg auction ISO23, 33
- Single leg cross ISO8, 11
- Multi leg auto-electronic trade107, 11
- Multi leg auction11, 33
- Multi leg cross136, 11
- Multi leg floor trade8, 11, 87
- Multi leg auto-electronic trade against single leg(s)107, 123
- Stock options auction107, 11, 87
- Multi leg auction against single leg(s)136, 11, 87
- Multi leg floor trade against single leg(s)8, 123
- Stock options auto-electronic trade123, 33
- Stock options cross136, 123
- Stock options floor trade8, 87, 123
- Stock options auto-electronic trade against single leg(s)107, 87, 123
- Stock options auction against single leg(s)136, 87, 123
- Stock options floor trade against single leg(s)136, 11, 222
- Multi leg floor trade of proprietary products222, 30
- Multilateral Compression Trade of Proprietary Data Products
Quote Message
type Quote
- Contract - Identifier for the options contract. This includes the ticker symbol, put/call, expiry, and strike price.
- AskPrice - the last best ask price in USD
- AskSize - the last best ask size in hundreds (each contract is for 100 shares).
- BidPrice - the last best bid price in USD
- BidSize - the last best bid size in hundreds (each contract is for 100 shares).
- Timestamp - a Unix timestamp (with microsecond precision)
Refresh Message
type Refresh
- Contract - Identifier for the options contract. This includes the ticker symbol, put/call, expiry, and strike price.
- OpenInterest - the total quantity of opened contracts as reported at the start of the trading day
- OpenPrice - the open price price in USD
- ClosePrice - the close price in USD
- HighPrice - the current high price in USD
- LowPrice - the current low price in USD
Unusual Activity Message
type UnusualActivity
- Contract - Identifier for the options contract. This includes the ticker symbol, put/call, expiry, and strike price.
- Type - The type of unusual activity that was detected
Block
- represents an 'block' tradeSweep
- represents an intermarket sweepLarge
- represents a trade of at least $100,000Unusual Sweep
- represents an unusually large sweep near market open.
- Sentiment - The sentiment of the unusual activity event
Neutral
-Bullish
-Bearish
-
- TotalValue - The total value of the trade in USD. 'Sweeps' and 'blocks' can be comprised of multiple trades. This is the value of the entire event.
- TotalSize - The total size of the trade in number of contracts. 'Sweeps' and 'blocks' can be comprised of multiple trades. This is the total number of contracts exchanged during the event.
- AveragePrice - The average price at which the trade was executed. 'Sweeps' and 'blocks' can be comprised of multiple trades. This is the average trade price for the entire event.
- AskPriceAtExecution - The 'ask' price of the underlying at execution of the trade event.
- BidPriceAtExecution - The 'bid' price of the underlying at execution of the trade event.
- UnderlyingPriceAtExecution - The last trade price of the underlying at execution of the trade event.
- Timestamp - a Unix timestamp (with microsecond precision).
API Keys
You will receive your Intrinio API Key after creating an account. You will need a subscription to a realtime data feed as well.
Documentation
Overview
The Intrinio Realtime Client will handle authorization as well as establishment and management of all necessary WebSocket connections. All you need to get started is your API key.
The first thing that you'll do is create a new Client
object, passing in a series of callbacks. These callback methods tell the client what types of subscriptions you will be setting up.
Creating a Client
object will immediately attempt to authorize your API key (provided in the config.json file). If authoriztion is successful, the object constructor will, also, open up the necessary connections.
After a Client
object has been created, you may subscribe to receive feed updates from the server.
You may subscribe to static list of symbols (a mixed list of option contracts and/or option chains).
Or, you may subscribe, dynamically, to option contracts, option chains, or a mixed list thereof.
It is also possible to subscribe to the entire universe of option contracts by switching the Provider
to "OPRA_FIREHOSE" (in config.json) and calling JoinLobby
.
The volume of data provided by the Firehose
exceeds 100Mbps and requires special authorization.
If you are using the non-firehose feed, you may update your subscriptions on the fly, using the Join
and Leave
methods.
The WebSocket client is designed for near-indefinite operation. It will automatically reconnect if a connection drops/fails and when then servers turn on every morning.
If you wish to perform a graceful shutdown of the application, please call the Stop
method.
Methods
Client client = new Client(OnTrade, OnQuote, OnRefresh, OnUnusualActivity);
- Creates an Intrinio Real-Time client. The provided actions implement OnTrade, OnQuote, OnRefresh, and OnUnusualActivity which handle what happens when the associated event happens.
- Parameter
onTrade
: The Action accepting trades. If noonTrade
callback is provided, you will not receive trade updates from the server. - Parameter
onQuote
: The Action accepting quotes. If noonQuote
callback is provided, you will not receive quote (ask, bid) updates from the server. - Parameter
onRefresh
: The Action accepting refresh messages. If noonRefresh
callback is provided, you will not receive open interest, open, close, high, low data from the server. Note: open interest data is only updated at the beginning of every trading day. If this callback is provided you will recieve an update immediately, as well as every 15 minutes (approx). - Parameter
onUnusualActivity
: The Action accepting unusual activity events. If noonUnusualActivity
callback is provided, you will not receive unusual activity updates from the server.
client.Join();
- Joins channel(s) configured in config.json.
client.Join(String channel)
- Joins the provided channel. E.g. "AAPL" or "GOOG__210917C01040000"
client.Join(String[] channels)
- Joins the provided channels. E.g. [ "AAPL", "MSFT__210917C00180000", "GOOG__210917C01040000" ]
client.JoinLobby()
- Joins the 'lobby' (aka. firehose) channel. The provider must be set to OPRA_FIREHOSE
for this to work. This requires special account permissions.
client.Leave();
- Leaves all joined channels/subscriptions, including lobby
.
client.Leave(String channel)
- Leaves the specified channel. E.g. "AAPL" or "GOOG__210917C01040000"
client.Leave(String[] channels)
- Leaves the specified channels. E.g. [ "AAPL", "MSFT__210917C00180000", "GOOG__210917C01040000" ]
client.Stop();
- Stops the Intrinio Realtime WebSocket Client. This method will leave all joined channels, stop all threads, and gracefully close the websocket connection(s).
Configuration
config.json
{
"Config": {
"ApiKey": "", //Your Intrinio API key.
"Provider": "OPRA",
"Symbols": [ "GOOG__210917C01040000", "MSFT__210917C00180000", "AAPL__210917C00130000", "SPY" ], //This is a list of individual contracts (or option chains) to subscribe to.
"NumThreads": 8 //The number of threads to use for processing events.
},
"Serilog": {
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{ "Name": "Console" }
// Uncomment to log to file
//{
// "Name": "File",
// "Args": {
// "path" : ""
// }
//}
]
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- FSharp.Core (>= 7.0.400)
- Intrinio.SDK (>= 7.4.2)
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.4)
- Microsoft.Extensions.Configuration.Json (>= 7.0.0)
- Serilog (>= 3.0.1)
- Serilog.Settings.Configuration (>= 7.0.0)
- Serilog.Sinks.Console (>= 4.1.0)
- Serilog.Sinks.File (>= 5.0.0)
- System.Text.Json (>= 7.0.3)
- WebSocket4Net (>= 0.15.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
6.4.1 | 108 | 9/24/2024 | |
6.4.0 | 85 | 9/24/2024 | |
6.3.1 | 91 | 9/19/2024 | |
6.3.0 | 84 | 9/19/2024 | |
6.2.0 | 98 | 7/11/2024 | |
6.1.0 | 92 | 7/10/2024 | |
6.0.0 | 122 | 5/15/2024 | |
5.0.2 | 231 | 12/7/2023 | |
5.0.1 | 113 | 12/7/2023 | |
5.0.0 | 133 | 12/1/2023 | |
4.1.0 | 255 | 3/20/2023 | |
4.0.0 | 226 | 3/10/2023 | |
3.2.0 | 306 | 2/16/2023 | |
3.1.0 | 304 | 12/14/2022 | |
3.0.1 | 310 | 12/8/2022 |
Version 6.3.0 release.