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

karlwancl/StooqApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages