TraderShop.Financials.TdAmeritrade.Instruments
2.0.0
dotnet add package TraderShop.Financials.TdAmeritrade.Instruments --version 2.0.0
NuGet\Install-Package TraderShop.Financials.TdAmeritrade.Instruments -Version 2.0.0
<PackageReference Include="TraderShop.Financials.TdAmeritrade.Instruments" Version="2.0.0" />
paket add TraderShop.Financials.TdAmeritrade.Instruments --version 2.0.0
#r "nuget: TraderShop.Financials.TdAmeritrade.Instruments, 2.0.0"
// Install TraderShop.Financials.TdAmeritrade.Instruments as a Cake Addin #addin nuget:?package=TraderShop.Financials.TdAmeritrade.Instruments&version=2.0.0 // Install TraderShop.Financials.TdAmeritrade.Instruments as a Cake Tool #tool nuget:?package=TraderShop.Financials.TdAmeritrade.Instruments&version=2.0.0
Instruments 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 Instruments Documentation
Usage
public class InstrumentProvider
{
private readonly ITdAmeritradeInstrumentProvider _instrumentProvider;
public InstrumentProvider(ITdAmeritradeInstrumentProvider instrumentProvider)
{
_instrumentProvider = instrumentProvider;
}
public async Task Return_Instrument_Successfully(string symbol)
{
var result = await _instrumentProvider.GetInstrument(symbol);
}
public async Task Return_Instruments_Successfully()
{
var result = await _instrumentProvider.GetInstruments(symbols: new string[] { "TIGR", "AAPL" });
}
}
Description
This library is in charge of providing information on instruments (stock tickers, futures tickers, etc).
A single instrument can be requested by using GetInstrument(string symbol) or a list of instruments can be requested by using GetInstruments(string[] symbols).
Also by calling GetAllFuturesInstruments() you can get a list of all of TdAmeritrade's futures instruments listed on their website.
Note individual contracts are not supported
GetAllForexInstruments() is currently not implemented.
Product | Versions 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. |
-
net7.0
- TraderShop.Financials.Abstractions (>= 2.0.0)
- TraderShop.Financials.TdAmeritrade.Abstractions (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
updated contracts