Install
openclaw skills install @jason-aka-chen/quant-strategy-bundle-chenQuantitative trading strategy bundle - Contains multiple verified A-stock quantitative trading strategy frameworks. Includes momentum strategies, reversal strategies, and trend strategies, with backtesting and signal generation support. Ideal for quantitative trading beginners and strategy development reference.
openclaw skills install @jason-aka-chen/quant-strategy-bundle-chenQuantitative trading strategy bundle with multiple verified strategy frameworks.
pip install pandas numpy xgboost tushare
from strategy import MomentumStrategy, ReversalStrategy, TrendStrategy
# Initialize strategy
strategy = MomentumStrategy()
# Generate signals
signals = strategy.generate_signals(stock_pool, factors)
# Backtest
result = strategy.backtest(signals, prices)
Configure in config.json:
v1.0.0 - Initial release