发布网友 发布时间:2022-04-25 14:22
共1个回答
热心网友 时间:2023-09-20 14:18
公式如下:
ma18:=ma(close,18);
ENTERLONG:count(close/ma18>1.004 and ma18>ref(ma18,1) or ma18=ref(ma18,1),barslast(count(close<ma18,n)=2 and ma18<ref(ma18,1) or ma18=ref(ma18,1)))=1;
EXITLONG:count(count(close<ma18,n)=2 and ma18<ref(ma18,1) or ma18=ref(ma18,1),barslast(close/ma18>1.004 and ma18>ref(ma18,1) or ma18=ref(ma18,1)))=1;
{ 把上面代码直接粘贴到新建的交易系统公式中就可以了。当出现首个买入信号后,不会连续再出现很多的买入信号;卖出同样。买卖信号只会交替出现。}