Giter Site home page Giter Site logo

kraken.api.client's Introduction

Kraken.Api.Client

Just playing about with this for a personal project and only a couple of GET end points exist so far. I'm intending to add support all of the available public / private with proper request throttling based on the rules in the documentation below.

The api documentation for the Kraken Api can be found here: https://www.kraken.com/help/api

Usage

Create a client:

  var client = new KrakenClient("https://api.kraken.com");

Request a list of available assets (https://api.kraken.com/0/public/Assets):

  var assets = await client.GetAssetInfo();

  foreach (var asset in assets)
    Console.WriteLine($"{asset.AssetName} -> {asset.CurrencyName}");

Request a list of available asset pairs (https://api.kraken.com/0/public/AssetPairs):

  var assetPairs = await client.GetAssetPairs();

  foreach (var assetPair in assetPairs)
    Console.WriteLine($"{assetPair.PairName}: {assetPair.BaseName} -> {assetPair.QuoteName}");

Request a list of asset pair tickers. This can be limited to a subset of asset pairs (https://api.kraken.com/0/public/Ticker):

  var tickers = await client.GetAssetPairTickers(assetPairs);

  foreach (var ticker in tickers)
    Console.WriteLine($"{ticker.PairName} -> Ask: {ticker.AskPrice} Bid: {ticker.BidPrice} Last: {ticker.LastPrice}");

Request the OHLC (Open / High / Low / Closed) data. The interval for the data can specified and the 'since' parameter can be given as the lastPollingId (https://api.kraken.com/0/public/OHLC):

  var ohlcData = await client.GetOHLC(assetPair.PairName, OHLCTimeInterval.FiveMinutes, lastPollingId);

  Console.WriteLine($"{ohlcData.PairName} -> Last Id: {ohlcData.LastPollingId}");

  foreach (var entry in ohlcData.Entries)
    Console.WriteLine($"({entry.Time}) Open: {entry.OpenPrice} / Close: {entry.ClosePrice} / High: {entry.HighPrice} / Low: {entry.LowPrice}");

kraken.api.client's People

Contributors

coinio avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  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.