A bunch of useful tools for creating trading strategies with Composer.trade
Project description
Composer Tools
A small library of useful tools for Composer
📦 Installation
pip install composer-tools
🚀 Quick Example
from composer_tools.converters.short_codes import generate_symphony_code
# When SPY's RSI drops below 30, switch to GLD, otherwise stay in BIL
code = generate_symphony_code("RSI_14_SPY_LT_30 GLD,BIL")
This generates:
(defsymphony
"RSI_14_SPY_LT_30"
{:asset-class "EQUITIES", :rebalance-frequency :daily}
(weight-equal
[(if
(< (rsi "SPY" {:window 14}) 30.0)
[(asset "GLD")]
[(asset "BIL")])])
)
⚙️ How It Works
The format is simple: CONDITION ASSET1,ASSET2
- CONDITION: When to switch assets
- ASSET1: What to buy when condition is true
- ASSET2: What to buy when condition is false
📊 Condition Types
Absolute Conditions
Compare a metric to a fixed value:
generate_symphony_code("RSI_14_SPY_LT_30 GLD,BIL") # RSI below 30
generate_symphony_code("STD_20_XLU_GT_0.02 TLT,SPY") # Volatility above 2%
generate_symphony_code("CUMRET_10_SPY_LT_0 CASH,SPY") # Negative returns
Relative Conditions
Compare metrics between assets:
generate_symphony_code("MA_50_SPY_LT_MA_20_SPY CASH,SPY") # Death cross
generate_symphony_code("CUMRET_30_XLK_GT_CUMRET_30_XLU XLK,XLU") # Sector rotation
Nested Conditions
Chain conditions with __ (all must be true):
generate_symphony_code("RSI_14_SPY_LT_30__STD_20_SPY_GT_0.02__CUMRET_5_SPY_LT_0 GLD,SPY")
📈 Supported Metrics
-
RSI- Relative Strength Index -
STD- Standard deviation of returns -
CUMRET- Cumulative return -
MA- Moving average - there are more from Composer which need to be added!
💡Real Examples
# Momentum strategy
generate_symphony_code("RSI_14_QQQ_GT_70 QQQ,TLT")
# Volatility protection
generate_symphony_code("STD_20_SPY_GT_0.025 TLT,SPY")
# Trend following
generate_symphony_code("MA_20_SPY_GT_MA_50_SPY SPY,CASH")
# Nested statement
generate_symphony_code("RSI_14_SPY_LT_30__STD_20_VIX_GT_25__CUMRET_10_SPY_LT_-0.05 GLD,SPY")
🔧 API
generate_symphony_code(input_str: str) -> str
# Converts short notation to Composer code.
parse_condition(condition_str: str) -> dict
# Parses condition strings into structured data (useful for debugging).
parse_condition("RSI_14_SPY_LT_30")
# Returns: {'type': 'absolute', 'metric': 'RSI', 'window': '14', 'ticker': 'SPY', 'operator': 'LT', 'value': '30'}
🤝 Contributing
This project is new and contributors are welcome. Please submit a PR!
There's a lot of interesting work to do:
- More metrics and functions: The rest of the Composer functions
- Better conditions: OR logic, more complex nesting
- Performance: Optimization and caching
- Documentation: More examples and tutorials
Development Setup 🛠️
git clone https://github.com/your-repo/composer-tools
cd composer-tools
uv sync
uv run pytest
All contributions welcome, from typo fixes to major features. The codebase is clean and the tests are comprehensive, so it's easy to jump in.
📄 License
MIT License - use this code however you want.
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 composer_tools-0.1.2.tar.gz.
File metadata
- Download URL: composer_tools-0.1.2.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9464a0fd308e6e76882b370651ccd849f50d87dcf1935e5bddc3bd39ca693f8
|
|
| MD5 |
b1e1a67c070ef9b53d59cd75a3dc38f7
|
|
| BLAKE2b-256 |
8aa30fd67fc370d8d653644373ccd42ae6ed296f12bdac997ac9c60283c6af9e
|
File details
Details for the file composer_tools-0.1.2-py3-none-any.whl.
File metadata
- Download URL: composer_tools-0.1.2-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b833ed67a09a11e80b5663feb775e856aa3c405bcc8ecdf4237db534c5a2161e
|
|
| MD5 |
455510ba6b099e299d7006e0fecca6f5
|
|
| BLAKE2b-256 |
6accf162d150ed89db64bcc39ddace117e98b862562ce5f133a986bff2f0b9cc
|