🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

TraderShop.Financials.TdAmeritrade.Quotes

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

TraderShop.Financials.TdAmeritrade.Quotes

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

Source
nugetNuGet
Version
2.0.0
Version published
Maintainers
1
Created
Source

Quotes Library

home screen home screen home screen home screen



Buy Me A Coffee



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.

Keywords

TdAmeritrade

FAQs

Package last updated on 21 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts