mirror of
https://ghfast.top/https://github.com/aeroxw/easy-tdx.git
synced 2026-09-12 18:04:16 +08:00
Strategies included: - ma_cross: MA5/MA20 dual moving average crossover - expma_cross: EMA12/EMA50 crossover (more responsive) - macd_cross: MACD golden/death cross - bollinger_breakout: Bollinger band breakout - rsi_reversal: RSI overbought/oversold reversal - kdj_golden: KDJ low golden cross / high death cross - turtle_breakout: Turtle trading (Donchian channel) - bias_reversal: BIAS mean reversion - volume_price: Volume-price confirmation Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
658 B
Python
27 lines
658 B
Python
"""RSI 超买超卖策略。
|
|
|
|
RSI < 30(超卖)买入,RSI > 70(超买)卖出。
|
|
|
|
用法::
|
|
|
|
easy-tdx backtest SZ 000001 --strategy-file strategies/rsi_reversal.py --table
|
|
"""
|
|
|
|
from easy_tdx.backtest import Strategy
|
|
from easy_tdx import MyTT
|
|
|
|
|
|
class RSIStrategy(Strategy):
|
|
"""RSI 超买超卖反转策略。"""
|
|
|
|
def init(self) -> None:
|
|
self.rsi = self.I(MyTT.RSI, self.data.close, 14)
|
|
|
|
def next(self) -> None:
|
|
cur_rsi = self.rsi[self._bar_index]
|
|
|
|
if cur_rsi < 30 and self.position["size"] == 0:
|
|
self.buy(size=0)
|
|
elif cur_rsi > 70 and self.position["size"] > 0:
|
|
self.sell(size=0)
|