TraderShop.Financials.TdAmeritrade.Quotes 2.0.0

dotnet add package TraderShop.Financials.TdAmeritrade.Quotes --version 2.0.0
NuGet\Install-Package TraderShop.Financials.TdAmeritrade.Quotes -Version 2.0.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="TraderShop.Financials.TdAmeritrade.Quotes" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TraderShop.Financials.TdAmeritrade.Quotes --version 2.0.0
#r "nuget: TraderShop.Financials.TdAmeritrade.Quotes, 2.0.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 TraderShop.Financials.TdAmeritrade.Quotes as a Cake Addin
#addin nuget:?package=TraderShop.Financials.TdAmeritrade.Quotes&version=2.0.0

// Install TraderShop.Financials.TdAmeritrade.Quotes as a Cake Tool
#tool nuget:?package=TraderShop.Financials.TdAmeritrade.Quotes&version=2.0.0

Quotes Library

<img src="https://img.shields.io/github/issues/ucrengineer/TraderShop.Financials" alt = "home screen" style = "float: left"/> <img src="https://img.shields.io/github/forks/ucrengineer/TraderShop.Financials" alt = "home screen" style = "float: left"/> <img src="https://img.shields.io/github/stars/ucrengineer/TraderShop.Financials" alt = "home screen" style = "float: left"/> <img src="https://img.shields.io/github/license/ucrengineer/TraderShop.Financials.TdAmeritrade" alt = "home screen" style = "float: left"/>

<br></br> <a href="https://www.buymeacoffee.com/ucrengineer" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>

<br></br> TdAmeritrade API Documentation

Usage


public class QuotesProvider
    {
        private readonly ITdAmeritradeQuotesProvider _quotesProvider;

        public QuotesProvider(ITdAmeritradeQuotesProvider Provider)
        {
            _quotesProvider = Provider;
        }

        public async void BasicExample()
        {
            var quote = await _quotesProvider.GetQuote<Quote>("MSFT");

            var future = await _quotesProvider.GetQuote<Future>("MSFT");

            var futureOptions = await _quotesProvider.GetQuote<FutureOptions>("MSFT");

            var mutualFunds = await _quotesProvider.GetQuote<MutualFund>("MSFT");

            var results = await _quotesProvider.GetQuotes(symbols: "MSFT,/KC,EUR/USD");

        }
    }

Description

This library uses the TdAmeritrade API for information on quotes for a given symbol. See the Quote, Future, FutureOptions, and MutualFund classes for more information.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TraderShop.Financials.TdAmeritrade.Quotes:

Package Downloads
TraderShop.Financials.TdAmeritrade.OptionChains

This library provides a OptionsChains service for easy interaction with the official TdAmeritrade api

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 337 11/21/2022
1.1.4 529 7/4/2022
1.1.3 500 6/20/2022
1.1.2 491 6/19/2022
1.0.2 496 6/10/2022
1.0.1 483 5/24/2022
1.0.0 472 5/24/2022
1.0.0-preview1 156 5/24/2022

updated contracts