Skip to content

pythonfortraders/thetadata-api-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

thetadata-api-python

A simple, easy-to-use, unofficial Python wrapper for the ThetaData REST API.

Bonus: New ThetaData customers can get 30% off their first month with code PYTHON4TRADERS.

Context

The original thetadata-python library is deprecated and it's preferred to use the REST API directly.

Their documentation provides Python examples for the REST API that are useful and comprehensive and you'll find these on every endpoint page (example). This library is a simple wrapper on those examples into neat classes and functions that anyone can download and use. It provides 2 additional conveniences:

  1. Integration with pandas, so data is returned to your program directly in a DataFrame.
  2. A CLI (command-line-interface) wrapper for downloading data directly without writing any code yourself

Usage

Make sure ThetaTerminal is running - nothing will work without it!

This library currently provides 3 classes for core operations:

  • ThetaDataStocksHistorical
  • ThetaDataStocksSnapshot
  • ThetaDataOptions

Here's an example of using the snapshot object to get current market quotes:

stocks_snapshot = ThetaDataStocksSnapshot(log_level="INFO", output_dir="./output")
quotes_df = stocks_snapshot.get_quotes("AAPL")
print(quotes_df.head())

Several code examples are available here.

There's also a command line interface available in cli. You can use it as follows:

(pft) ➜  cli git:(main) python thetadata_cli.py 
                                                                                                                                     
 Usage: thetadata_cli.py [OPTIONS] COMMAND [ARGS]...                                                                                 
                                                                                                                                     
╭─ Options ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --install-completion          Install completion for the current shell.                                                           │
│ --show-completion             Show completion for the current shell, to copy it or customize the installation.                    │
│ --help                        Show this message and exit.                                                                         │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ options                                                                                                                           │
│ stocks                                                                                                                            │
╰───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Subcommands nest downwards naturally. For example, let's say you want to get historical OHLC data for a stock:

(pft) ➜  cli git:(main) python thetadata_cli.py stocks historical ohlc AAPL 20240101 20240201
⠸ Loading data...Data retrieved successfully

This will save the data as a local CSV named ohlc_AAPL_20240101_20240201.csv. Many examples of CLI usage can be found here.

More Resources

If you want to learn more about working with market data in Python, here are some resources for you:


Need help? The best way to get support is to ask a question here.

Releases

No releases published

Packages

No packages published

Languages