请教高手:如何过滤掉通达信公式中多余的买入和卖出信号

2021-02-27 05:23:06 字数 826 阅读 3790

1楼:指标公式菜鸟

这是两个选股公式:(一)是选出多头排列选股用;(二)象是空头卖内出预警容用;

(一)enterlong: close>ema(close,10) and close>ema(close,60) and vol>ref(vol,1) and ema(close,5)>ema(close,20) and ema(close,10)>ema(close,20) ;

(二)exitlong:closeref(vol,1) or close

2楼:匿名用户

你这段源码里面不完整吧? 没看出有画**卖出信号的**段啊

通达信autofilter自动过滤交易信号怎么使用

3楼:匿名用户

你确认是通bai达信正式所使用du的函数吗zhi?

autofilter---自动过滤交易信号,目前在dao策略版型交易系统中做示范权模型时使用它,一般是直接放在公式末尾使用,官方没有正式对外说明具体的使用方法。

下面给你一个ma交易策略指标,仅供你参考。

---------------------------------------

ma1:=ma(close,short);

ma2:=ma(close,long);

平空开多:=cross(ma1,ma2);

平多开空:=cross(ma2,ma1);

buyshort_buy(平空开多,low);

sell_sellshort(平多开空,high);

autofilter;