布林带下轨1.05

This commit is contained in:
zhangkun9038@dingtalk.com 2025-08-30 01:18:35 +08:00
parent b2cda90741
commit 9f9777008d

View File

@ -912,7 +912,7 @@ class FreqaiPrimer(IStrategy):
cond1 = (dataframe["&-price_value_divergence"] < self.buy_threshold * 1.5) # 放宽到1.5倍
cond2 = (dataframe["volume_z_score"] > volume_z_score_threshold * 0.7) # 降低成交量要求
cond3 = (dataframe["rsi"] < rsi_threshold * 1.2) # 放宽RSI要求
cond4 = (dataframe["close"] <= dataframe["bb_upperband"]) # 可以在上轨附近入场
cond4 = (dataframe["close"] <= dataframe["bb_lowerband"] * 1.05) # 必须跌破下轨
cond5 = (dataframe["stochrsi_k"] < stochrsi_threshold * 1.2) # 放宽STOCHRSI要求
cond6 = pd.Series([True] * len(dataframe), index=dataframe.index) # 取消熊市过滤
cond7 = pd.Series([True] * len(dataframe), index=dataframe.index) # 取消超买过滤