编写要求:
三天内发生过kdj金叉;三天内MACD量柱(0线以下方的)出现过最低绿色量柱;已经连续两天收阳线;
公式在线网解答:
exist(cross(kdj.k,kdj.d),3) and every(macd.macd<0,3) and exist(cross(macd.macd,ref(macd.macd,1)),3) and every(c>o,2);
编写要求:
三天内发生过kdj金叉;三天内MACD量柱(0线以下方的)出现过最低绿色量柱;已经连续两天收阳线;
公式在线网解答:
exist(cross(kdj.k,kdj.d),3) and every(macd.macd<0,3) and exist(cross(macd.macd,ref(macd.macd,1)),3) and every(c>o,2);