Introduction & Installation

Overview

The Blockhouse SDK provides a seamless interface to interact with the Alpaca Trading API.

Schedule trades Update trades Cancel trades

Installation

To install the Blockhouse SDK, run:

pip install blockhouse

This installs all required dependencies, including requests.


2. Getting Started

Initialization

To start using the SDK, import TradeClient and initialize it with your API key.

from blockhouse import TradeClient
client = TradeClient("your_api_key")

Last updated