Skip to main content

Official ELTYER plugin for the investing algorithm framework

Project description

ELTYER Investing Algorithm Framework Plugin

This is the official plugin for the investing algorithm framework open source project.

Installation

You can install the plugin with pip.

pip install eltyer-investing-algorithm-framework

Usage

Example trading bot using binance data using the eltyer components.

import os

from investing_algorithm_framework import AlgorithmContext
from eltyer_investing_algorithm_framework.setup import create_app

dir_path = os.path.abspath(os.path.join(os.path.realpath(__file__), os.pardir))

app = create_app(
    resource_directory=dir_path, key="<YOUR_ELTYER_TRADING_BOT_API_KEY>"
)


@app.algorithm.strategy(
    time_unit="SECOND",
    interval=5,
    data_provider_identifier="BINANCE",
    target_symbol="BTC",
    trading_data_type="TICKER",
)
def perform_strategy(context: AlgorithmContext, ticker):
    print("Running my strategy")

    
if __name__ == "__main__":
    app.start()

Documentation

You can find the official documentation at our documentation website

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

Built Distribution

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