Strategic Symbolic Trading Engine with iterative R2 fitting and FunctionGemma discovery.
Project description
Sagan Trade
High-throughput symbolic mathematical trading engine
Sagan Trade replaces black-box neural networks with transparent, human-readable mathematical equations discovered via FunctionGemma (via Ollama).
| Component | Role |
|---|---|
| Symbolic Regressor | Fits variables to R2 > 0.95 using Polynomial and Fourier basis functions. |
| FunctionGemma | AI architect that suggests optimal mathematical compositions of signals. |
| Power Hub | OS-level optimization for maximum throughput (Eco, Balanced, Turbo). |
Installation
pip install sagan-trade
Or in editable mode from source:
git clone https://github.com/That-Tech-Geek/sagan-trade
cd sagan-trade
pip install -e ".[dev]"
Quick Start
Python API
import sagan
# Train a symbolic ensemble with high-accuracy math fitting
model_id = sagan.train(
["AAPL"],
signals=["Close", "Volume", "RSI"],
target_r2=0.95,
profile="turbo"
)
# Predict using the latest symbolic expression
result = sagan.predict()
print(result["signal"]) # "LONG" | "SHORT"
print(result["formula"]) # e.g. "(Close * 0.5) + log(Volume)"
Command-Line Interface
# List available math signals for a ticker
sagan vars AAPL
# Train symbolic model
sagan train AAPL --signals Close,Volume --r2 0.95 --profile turbo
# Get Trading Signal
sagan predict
Architecture
yfinance Data
│
▼
[Parallel Fitting] → Each variable fitted to R2 > 0.95
│
▼
[FunctionGemma] → Suggests composite math formula
│
▼
[Evaluation] → Trend-based signal generation
Configuration
All defaults live in sagan.config:
from sagan import config
config.models_dir = "~/.sagan/models/"
License
MIT © 2024 Sagan Labs
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
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 sagan_trade-0.2.4.tar.gz.
File metadata
- Download URL: sagan_trade-0.2.4.tar.gz
- Upload date:
- Size: 60.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
244240d4662bdba0c6aa69fd9a2d8a0cca202d6f8951c465f417621d0448afdf
|
|
| MD5 |
c67f7166a383a0d45b03e9bffa2b1752
|
|
| BLAKE2b-256 |
326c522fdd9a9c8763633bea35c9d86ffa7cdff472b88882edd57b44400bc48b
|
File details
Details for the file sagan_trade-0.2.4-py3-none-any.whl.
File metadata
- Download URL: sagan_trade-0.2.4-py3-none-any.whl
- Upload date:
- Size: 45.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0b4b87f256619df42b7d34b49e69d10448c6149ea18d315d876d058c59d00bb
|
|
| MD5 |
7740ee7e8851b370a6df7298b357275f
|
|
| BLAKE2b-256 |
e1c716346cbe8d0ef4be6df14cb42c70d0642d37a4434854b708a9db4705d3b3
|