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
Release history Release notifications | RSS feed
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eltyer investing algorithm framework-0.5.4.tar.gz.
File metadata
- Download URL: eltyer investing algorithm framework-0.5.4.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12cd0bf8f9f4e2e68cbfd8a253cc0784b62dfe22e72795a09f604c2d138cecc4
|
|
| MD5 |
a9d93fb91d6705dba29b47e7b0d730a1
|
|
| BLAKE2b-256 |
e3dae7e53110a2997da7235aa613fda2e714fa2a0f4082a0c097f64e7fc1e154
|
File details
Details for the file eltyer_investing_algorithm_framework-0.5.4-py3-none-any.whl.
File metadata
- Download URL: eltyer_investing_algorithm_framework-0.5.4-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f4b9f977a496b29a5e7f029eee4fa310ff267ec1f7237d3a6aa70985b879614
|
|
| MD5 |
438eb4e7bfe2afa4b070f369164b4f30
|
|
| BLAKE2b-256 |
a4205ef10cd563a54ecfca479bb18d680a193eb13ec1d9585a7ffb7299e1c99d
|