Logo
Explore Help
Sign In
vasily/TCPDashboard
1
0
Fork 0
You've already forked TCPDashboard
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
TCPDashboard/strategies/implementations/__init__.py

18 lines
422 B
Python
Raw Normal View History

4.0 - 1.0 Implement strategy engine foundation with modular components - Introduced a new `strategies` package containing the core structure for trading strategies, including `BaseStrategy`, `StrategyFactory`, and various strategy implementations (EMA, RSI, MACD). - Added utility functions for signal detection and validation in `strategies/utils.py`, enhancing modularity and maintainability. - Updated `pyproject.toml` to include the new `strategies` package in the build configuration. - Implemented comprehensive unit tests for the strategy foundation components, ensuring reliability and adherence to project standards. These changes establish a solid foundation for the strategy engine, aligning with project goals for modularity, performance, and maintainability.
2025-06-12 14:41:16 +08:00
"""
Strategy implementations package.
This package contains individual implementations of trading strategies,
each in its own module for better maintainability and separation of concerns.
"""
from .ema_crossover import EMAStrategy
from .rsi import RSIStrategy
from .macd import MACDStrategy
# from .macd import MACDIndicator
__all__ = [
'EMAStrategy',
'RSIStrategy',
'MACDStrategy',
# 'MACDIndicator'
]
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.5 Page: 26ms Template: 2ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API