Giter Site home page Giter Site logo

iexsharp's Introduction

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

Prerelease packages are on GH Packages.

NuGet Badge Releases are on NuGet

IEX Cloud

//For FREE and LAUNCH users
IEXCloudClient iexClient = new IEXCloudClient("publishToken", "secretToken", false, false); 

//For SCALE and GROW users
IEXCloudClient iexClient = new IEXCloudClient("publishToken", "secretToken", true, false); 

//Sandbox
IEXCloudClient iexClient = new IEXCloudClient("publishToken", "secretToken", false, 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

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

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

iexsharp's People

Contributors

z-m-huang avatar vslee avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.