选股公式:N日涨幅小于M%

N个交易日内涨幅小于M%.俺使用的是通信达软件,求这个选股公式即导入方法,谢谢了!

(close-ref(close,N))/ref(close,N)*100<M
将N设为你需要的交易日天数,若三天内的涨幅,N设为3;
M若为5%,则设为5即可。
通达信中功能——自编指标——条件选股——新建,复制进去,设好参数点击确定即可!

参考资料:http://hi.baidu.com/yj7251

温馨提示:内容为网友见解,仅供参考
第1个回答  2013-07-15
(close-ref(close,N))/ref(close,N)*100<M
将N设为你需要的交易日天数,若三天内的涨幅,N设为3;
M若为5%,则设为5即可。
通达信中功能——自编指标——条件选股——新建,复制进去,设好参数点击确定即可!
第2个回答  2009-06-09
你先看看,.
如果你是新手经验不足,建议你到下面网站去学习,相信你获得的知识要比去什么群好得多,只要你能从中获得10%的知识,你就是高手了。
股市扫盲
http://www.8nn8.com/zt/gssm/
股市入门基础知识
http://www.left-in.com/stock_study_1.htm
入市技巧攻略
http://finance.sina.com.cn/stock/blank/xgmgl.shtml

型态分析 http://www.asharing.cn/post/73.html
K线线势型态分析 http://www.asharing.cn/post/72.html
K线图的具体分析 http://www.asharing.cn/post/71.html
技术分析的操作原则http://www.asharing.cn/post/70.html
黄金分割率理论http://www.asharing.cn/post/69.html
相反理论http://www.asharing.cn/post/68.html
随机漫步理论http://www.asharing.cn/post/67.html

证券市场分析论http://www.asharing.cn/post/65.html
信心理论http://www.asharing.cn/post/64.html
股票价值理论http://www.asharing.cn/post/63.html
发展阶段与成长周期理论http://www.asharing.cn/post/62.html
波浪理论http://www.asharing.cn/post/61.html
道氏股价波动理论http://www.asharing.cn/post/60.html
个股分析http://www.asharing.cn/post/59.html
财务报表分析http://www.asharing.cn/post/58.html
入市时机分析http://www.asharing.cn/post/57.html
行情变动的主要因素http://www.asharing.cn/post/56.html

人气指标(AR)http://www.asharing.cn/post/54.html
均价线(AVL)http://www.asharing.cn/post/53.html
多空指数(BBI)http://www.asharing.cn/post/52.html
乖离率(BIAS)http://www.asharing.cn/post/51.html
布林线(BOLL)http://www.asharing.cn/post/50.html
意愿指标(BR)http://www.asharing.cn/post/49.html
顺势指标(CCI)http://www.asharing.cn/post/48.html
CR指标(CR)http://www.asharing.cn/post/47.html
动向指数(DMI)http://www.asharing.cn/post/46.html
指数平均数(EXPMA)http://www.asharing.cn/post/45.html
换手率线(HSL)http://www.asharing.cn/post/44.html
随机指数(KDJ)http://www.asharing.cn/post/43.html
K线图(K)http://www.asharing.cn/post/42.html
移动平均线(MA)http://www.asharing.cn/post/41.html
指数平滑移动平均线(MACD)http://www.asharing.cn/post/40.html
动量指标(MTM)http://www.asharing.cn/post/39.html
成交量柱体及其均线(MV)http://www.asharing.cn/post/38.html
威廉变异离散量(WVAD)http://www.asharing.cn/post/37.html
能量潮(OBV)http://www.asharing.cn/post/36.html
震荡量指标(OSC)http://www.asharing.cn/post/35.html
心理线(PSY)http://www.asharing.cn/post/34.html
变动率指标(ROC)http://www.asharing.cn/post/33.html
威廉指数(WMS)http://www.asharing.cn/post/32.html
第3个回答  2018-11-20
c/ref(c,n)<(1+m/100);
股票公式专家团为你解答,希望能帮到你,祝投资顺利。
第4个回答  2009-06-09
在智能选股里进行设置

选股公式:N日涨幅小于M%
c\/ref(c,n)<(1+m\/100);股票公式专家团为你解答,希望能帮到你,祝投资顺利。

选股公式:N日涨幅小于M%
(close-ref(close,N))\/ref(close,N)*100<M 将N设为你需要的交易日天数,若三天内的涨幅,N设为3;M若为5%,则设为5即可。通达信中功能——自编指标——条件选股——新建,复制进去,设好参数点击确定即可!参考资料:http:\/\/hi.baidu.com\/yj7251 ...

求N个交易日 振幅不超过M% 的选股公式
寻找N日内振幅大B小于D(大智慧软件)A:=(HHV(HIGH,n)-llv(l,n))\/(HHV(HIGH,n)+llv(l,n))\/2*100;aa:a>b and a<d and barscount(c)>n-1;

如何编这个指标公式?
(HHV(CLOSE,N)-LLV(CLOSE,N))\/CLOSE<M N日内振幅小于M

请老师费心编写同花顺公式:N日内跌幅小于m% ,同时涨幅大于x%”的选 ...
使用 and 函数即可。a1:=(close-ref(close,N))\/ref(close,N)*100<M;a2:=(REF(CLOSE,N)-CLOSE)\/REF(CLOSE,N)*100<M;a1 and a2;

求一个通达信选股公式,M日跌幅或涨幅超过N%
ZF:=(C-REF(C,M))\/REF(C,M)*100; SC:ZF>=N; DF:=(REF(C,M)-C)\/REF(C,M)*100; SC:DF>=N; 上述两个公式分别含义是m日涨幅超过n 或是m日内跌幅超过n ;涨幅就是指目前这只股票的上涨幅度。涨幅的计算公式:涨幅=(现价-上一个交易日收盘价)\/上一个交易日收盘价*100%。涨...

...同时满足N日内涨幅大于K% 小于M%的天数X 且选股当天换手大于2%_百 ...
DIFF:=EMA(CLOSE,3)-EMA(CLOSE,8);X1:=EMA(DIFF,5)*5;X2:=((EMA(CLOSE,3)-EMA(CLOSE,8)))*5;多方能量:=X2,COLORYELLOW,LINETHICK2;空方能量:=X1,COLORFFFF00,LINETHICK2;XG:CROSS(多方能量,空方能量) AND X2>0 ;

编写选股公式
(4)今日的成交量低于了整个流通盘的5%:vol\/capital<0.05;二、上涨、下跌1、上涨:(1)今日涨幅超过5%以上:close\/ref(close,1)>1.05;(2)5日均价连续上涨,表示如下:a:=ma(close,5);b:=ref(a,1);a>b;2、下跌:(1)今天的跌幅达到5%以上:close\/ref(close,1)<0.95;(2)5日均价连续下跌,表示如下:a:=...

选股公式的编写
或者直接用如下公式表示: vol\/ma(vol,10)〈2; (3).今日的5日均量较10个交易日平均成交量减少1倍,表示如下: a:=ma(vol,10); b:=ref(a,5); a\/b〈2; (4).今日的成交量低于了整个流通盘的5%,表示如下: vol\/capital〈0.05;二、上涨、下跌上涨:今天的涨幅达到5%以上,表示如下:close\/ref(close,1)...

请老师做一个 前N个交易日的涨幅超过N% 选股公式 通达信
{前N个交易日的涨幅超过M% 选股公式} XG1:SUM(REF((C-REF(C,1))\/C*100,1),N)>M;=== {前N个交易日的跌幅超过M%} XG2:SUM((C-REF(C,1))\/REF(C,1)*100,N)<-M;

相似回答