VSLee.IEXSharp 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package VSLee.IEXSharp --version 1.2.0
NuGet\Install-Package VSLee.IEXSharp -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VSLee.IEXSharp" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VSLee.IEXSharp --version 1.2.0
#r "nuget: VSLee.IEXSharp, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VSLee.IEXSharp as a Cake Addin
#addin nuget:?package=VSLee.IEXSharp&version=1.2.0

// Install VSLee.IEXSharp as a Cake Tool
#tool nuget:?package=VSLee.IEXSharp&version=1.2.0

IEXSharp

IEX Cloud API for C# and other .net languages. Supports SSE streaming

Prerequisites

This library currently targets netstandard20. Thus, it can be used with .net framework 4.6.1+ and .net core 2.0+

Usage

alternate text is missing from this package README image Prerelease packages are on GH Packages.

NuGet Badge Releases are on NuGet

IEX Cloud

public IEXCloudClient(string publishableToken, string secretToken, bool signRequest, bool useSandBox, APIVersion version = APIVersion.stable)

First, create an instance of IEXCloudClient

//For FREE and LAUNCH users
IEXCloudClient iexClient = new IEXCloudClient("publishableToken", "secretToken", signRequest: false, useSandBox: false); 

//For SCALE and GROW users
IEXCloudClient iexClient = new IEXCloudClient("publishableToken", "secretToken", signRequest: true, useSandBox: false); 

//Sandbox
IEXCloudClient iexClient = new IEXCloudClient("publishableToken", "secretToken", signRequest: false, useSandBox: true); 

To use SSE streaming (only included with paid IEX subscription plans)

using (var sseClient = iexClient.SSE.SubscribeStockQuoteUSSSE(symbols: new string[] { "spy", "aapl" }, 
	UTP: false, interval: StockQuoteSSEInterval.OneSecond))
{
	sseClient.Error += (s, e) =>
	{
		Console.WriteLine("Error Occurred. Details: {0}", e.Exception.Message);
	};
	sseClient.MessageReceived += m =>
	{
		Console.WriteLine(m.ToString());
	};
	await sseClient.StartAsync(); // this will block until cancelled
}

Additional usage examples are illustrated in the test project: IEXSharpTest

Legacy (V1)

IEX has deprecated most of their legacy API. However, some functions are still active and you can access them via:

IEXV1RestClient iexClient = new IEXV1RestClient();

Contributing

We welcome pull requests! See CONTRIBUTING.md.

License

MIT License - LICENSE.md

Disclaimers

Data provided for free by IEX via their IEX Cloud API Per their guidelines:

  • Required: If you display any delayed price data, you must display “15 minute delayed price” as a disclaimer.
  • Required: If you display latestVolume you must display “Consolidated Volume in Real-time” as a disclaimer.
  • Note on pricing data: All CTA and UTP pricing data is delayed at least 15 minutes.

This project is not related to the similarly named IEX-Sharp

Acknowledgments

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.9.4 2,997 8/14/2022
2.9.3 1,187 5/25/2022
2.9.2 1,302 4/23/2022
2.9.1 512 4/14/2022
2.9.0 3,928 5/20/2021
2.8.0 920 4/14/2021
2.7.0 2,215 3/4/2021
2.6.0 626 2/1/2021
2.5.0 3,102 12/28/2020
2.4.8 693 12/3/2020
2.4.7 3,118 10/15/2020
2.4.6 447 10/15/2020
2.4.5 537 10/14/2020
2.4.4 422 10/14/2020
2.4.3 571 10/11/2020
2.4.2 541 10/10/2020
2.4.1 635 10/10/2020
2.4.0 524 10/10/2020
2.3.0 974 9/12/2020
2.2.0 879 7/21/2020
2.1.0 1,658 6/4/2020
2.0.0 747 5/10/2020
1.2.0 814 3/24/2020
1.1.0 3,675 11/24/2019