Skip to content
This repository has been archived by the owner on Nov 20, 2022. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 1014 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 1014 Bytes

StooqApi

Build status NuGet license

A .NET wrapper for Stooq, based on .NET Standard 2.0

Feature

  • Get historical data from Stooq.com

Installation

PM> Install-Package StooqApi

Usage

Add Reference

using StooqApi;

Get Historical Data

var candles = await Stooq.GetHistoricalAsync("aapl", Period.Daily, new DateTime(2017, 1, 3));
Console.WriteLine($"DateTime: {candles[0].DateTime}, Open: {candles[0].Open}, High: {candles[0].High}, Low: {candles[0].Low}, Close: {candles[0].Close}");

Powered by

  • Flurl (@tmenier) - A simple & elegant fluent-style REST api library