TraderShop.Financials.TdAmeritrade.Abstractions 2.0.0

dotnet add package TraderShop.Financials.TdAmeritrade.Abstractions --version 2.0.0
NuGet\Install-Package TraderShop.Financials.TdAmeritrade.Abstractions -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.Abstractions" 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.Abstractions --version 2.0.0
#r "nuget: TraderShop.Financials.TdAmeritrade.Abstractions, 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.Abstractions as a Cake Addin
#addin nuget:?package=TraderShop.Financials.TdAmeritrade.Abstractions&version=2.0.0

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

TdAmeritrade API Abstractions 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 Authentication Documentation

Usage


    public class AuthServiceDemo
    {
        private readonly ITdAmeritradeAuthService _authService;

        public AuthServiceDemo(ITdAmericaritradeAuthService authService)
        {

            _authService = authService ?? throw new ArgumentNullException(nameof(authService));
        }

        public async Task Returns_Bearer_Token_Successfully()
        {
            var token = await _authService.GetBearerToken();
        }
    }

    public class TdAmeritradeOptions
    {
        public string auth_url { get; set; } = string.Empty;
        public string client_id { get; set; } = string.Empty;
        public string refresh_token { get; set; } = string.Empty;
        public string redirect_uri { get; set; } = string.Empty;
        public string account_number { get; set; } = string.Empty;
    }

    public class PostAccessTokenResponse
    {
        public string access_token { get; set; } = string.Empty;
        public string token_type { get; set; } = string.Empty;
        public int expires_in { get; set; }
        public string refresh_token { get; set; } = string.Empty;
        public string scope { get; set; } = string.Empty;

        public string error { get; set; } = string.Empty;
    }

Description

Must have a valid Refresh Token and ClientId to use the TdAmeritrade library. The bear token is stored until it expires using IMemoryCache. Also basic models that are used throughout the project are located in the Models project.

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 (11)

Showing the top 5 NuGet packages that depend on TraderShop.Financials.TdAmeritrade.Abstractions:

Package Downloads
TraderShop.Financials.TdAmeritrade.Quotes

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

TraderShop.Financials.TdAmeritrade.Instruments

This library provides a instruments service for interaction with the official tdAmeritrade api

TraderShop.Financials.TdAmeritrade.PriceHistory

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

TraderShop.Financials.TdAmeritrade.Orders

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

TraderShop.Financials.TdAmeritrade.MarketHours

This library provides a MarketHours 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 792 11/21/2022
1.1.4 1,951 7/4/2022
1.1.3 1,900 6/20/2022
1.1.2 1,871 6/19/2022
1.0.2 1,838 6/10/2022
1.0.1 1,831 5/24/2022
1.0.0 1,819 5/24/2022
1.0.0-preview1 503 5/24/2022

updated contracts