Skip to content
/ TDI Public

Trading Data Interface, a generic interface to collect trading data from multiple sources/API's.

License

Notifications You must be signed in to change notification settings

n0Trader/TDI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TDI - Trading Data Interface

Generic interface to retrieve trading data, inspired by DBI, and implemented with R6 object-oriented classes. The purpose is to support the eco-system of trading application(s) and quantitative analysis with a package which is solely developed to collect trading data from multiple sources (API's) through a reliable standardized interface.

The package offers a first draft implementations for the Yahoo Finance API, IEX Cloud API and FRED Economic data API. For now the generic Trading Data Interface and its first implementations are developed into the TDI package. When growing the intention is to split the generic interface and the API implementations into different packages.

In the philosophy of Tinyverse - "Light weight is the right weight" - our aim is to keep it simple and keep it light.

The current version retrieves historical prices (e.g. quotes) and economical data series. In addition is capable to perform technical analysis on the historical data (e.g. via the TTR package).

Suggestion or contributions are welcome to further develop the package to retrieve additional quantitative data.

Installation

You can install the latest development version from GitHub with:

# install.packages("devtools")
devtools::install_github("n0trader/TDI")

To install from Github you will need a development environment.

The package comes with a sample environment profile (/inst/TDI/Renviron.sample) with environment keys. These keys should be added to the project environment profile to store (personal) credentials for API access.

Basic usage

library(TDI)

# Create a TDI connection object to access the API.
con <- TDIConnector$connect("yahoo")
con$getChart("MSFT")

Plumber API

TDI supports a REST API using Plumber.

Yahoo Finance API

Yahoo Finance is a rich source of free financial data.