Skip to main content

SigTech Python SDK

Project description

SigTech SDK Banner

 

Docs

Contributors Forks Stargazers Issues MIT License

SigTech Python SDK

The SigTech Python SDK is designed to simplify the usage of the SigTech API for backtesting investment strategies by providing a higher-level, object-oriented method of interfacing with our API. With this SDK, you can easily test and view the performance of historical strategies.

Key Features

  • Provides a higher-level object-based interface for convenient interaction with the SigTech API.
  • Simplifies the creation of advanced trading strategies by providing methods which simulate rolling future strategies, basket strategies, and more.
  • Interfaces with SigTech's collection of historical performance data facilitating accurate backtesting. Explore the SigTech API data catalog to see the library of instruments available.

Installation

pip install sigtech

Requirements

  • Python 3.6+

Getting started with SigTech Python SDK

Authentication

  1. Sign-up for our API.
  2. Generate an API key using our dashboard.
  3. Secure your API key and save it as a global environment variable by following our instructions here.

Creating your first strategy

Our SDK provides convenient wrappers for boilerplate functions that are required to interact with our API. Copy the following code into your IDE and run it to quickly create, backtest, and view the performance of a custom rolling futures strategy.

Note!
The example below will only work if you have saved your API key as the global environment variable SIGTECH_API_KEY.

# Import the SigTech API
import sigtech.api as sig

# Initialize your session
sig.init()

# Create a Rolling Future Strategy
es_future = sig.RollingFutureStrategy(
    currency="USD",
    start_date="2020-01-04",
    contract_code="ES",
    contract_sector="INDEX",
    rolling_rule="front",
    front_offset="-6,-5",
)

# Retrieve the strategy history
print(es_future.history())

Next steps

  1. Learn more about the API with the reference guide.
  2. Follow some of our examples to see how you can replicate and backtest more complex, real-world trading strategies.

Google Colab

We understand that getting started with backtesting and evaluating trading strategies can be a daunting task, especially for users new to financial data analysis and Python development. To make the process as seamless as possible, we've prepared a collection of real-world examples in Jupyter Notebook format (.ipynb). All you need to follow along is a SigTech API key.

Logging

Logs down to the debug log level are available for all API requests. They can be accessed using the Python logging library.

import logging
logging.basicConfig(level=logging.DEBUG)

For more information, please refer to the logging library's documentation. See Logging in Python for a useful summary of the logging library's capabilities.

API Documentation

For detailed information about the SigTech API, please refer to our official API user guide and our interactive API reference guide.

Contributing to the SigTech Python SDK

We appreciate and encourage your contributions to the SigTech Python SDK! If you are enjoying the SDK, please show your support by starring this repository and sharing it on social media channels.

To contribute an example, provide feedback, report a bug or otherwise bring an issue to our attention regarding this project, please follow the steps outlined in the Contribution guidelines.

Please remember that all contributors are expected to behave appropriately and abide by our Code of conduct.

Reporting security issues

If you believe you have discovered a security vulnerability in our repository please report it to us immediately following the instructions here.

Attention!
Please follow the instructions detailed. Do not publicly disclose the vulnerability in a Github Issue or on a public forum such as Discord or Twitter.

Support

If you encounter any issues or have any questions regarding our API or SDK, you can reach out to us via our Discord or Twitter.

License

The SigTech Python SDK is released under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sigtech-0.5.1.tar.gz (29.4 kB view hashes)

Uploaded Source

Built Distribution

sigtech-0.5.1-py3-none-any.whl (40.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page