下载
登录/ 注册
主页
论坛
视频
热股
可转债
下载
下载

求会编公式的帮我编二个公式

12-03-12 21:09 1922次浏览
ser34
+关注
博主要求身份验证
登录用户ID:
闻到了牛市的脚步声.本小散的已套牢的心禁不住又蠢蠢欲动了.求淘股吧中高手帮我编几个公式:
1. 连续三天的涨幅差不多.均超过4%
即第一天涨5%,第二天跌4%左右,第三天又涨5%左右.
也可以第一天跌,第二天涨,第三天跌.
2.最近三天的均量为前面三天均量的N倍以上. N可以为1,2,3.
比如上周1,2,3的量的总合X 是星期4,5,本周1的量的总合Y的 1/N.
要求公式可以导入到国泰君安大智慧中去.
谢谢
打开淘股吧APP
1
评论(6)
收藏
展开
热门 最新
ser34

12-03-15 20:47

0
input:  n(3,1,100);  {输入参数,缺省为3}
  curSumV:=sum(v,3); {3日量和}
  preSumV:=ref(curSumV,3); {前3日量和}
  Vrate:=curSumV/preSumV; {量比}
  singal:Vrate>=n;
-----------------
不修改任何内容, 提示没有定义的标识符.
把2个n改成3以后,提示需要分号进行分隔.
ser34

12-03-14 07:41

0
谢谢. 今天晚上试下.
reinput

12-03-13 23:22

0
回SER34:没有积分,只好在这回你了。DZH应该是这样的格式
{1}
  range1:=c/ref(c,1);
  range2:=c/ref(c,2);
  border1:=range1<=0.959 or range1>=1.041; {单日涨跌幅4%以上}
  cond1:=range2>=0.989 and range2<=1.011;{三日涨跌幅1%以内}
  cond2:=count(border1,3)=3; {3日内涨跌幅均超过4%}
  singal:cond1 and cond2;

 {2}
  input:  n(3,1,100);  {输入参数,缺省为3}
  curSumV:=sum(v,3); {3日量和}
  preSumV:=ref(curSumV,3); {前3日量和}
  Vrate:=curSumV/preSumV; {量比}
  singal:Vrate>=n;
reinput

12-03-12 21:48

0
{2}
input:  n(3,1,100);  //输入参数
curSumV:=sum(v,3); //3日量和
preSumV:=ref(curSumV,3); //前3日量和
Vrate:=curSumV/preSumV; //量比
singal:Vrate>=n
reinput

12-03-12 21:41

0
{1}
  range1:=c/ref(c,1);
  range2:=c/ref(c,2);
  border1:=range1<=0.959 or range1>=1.041; //单日涨跌幅4%以上
  cond1:=range2>=0.989 and range2<=1.011;//三日涨跌幅1%以内
  cond2:=count(border1,3)=3; //3日内涨跌幅均超过4%
  singal:cond1 and cond2

上面的编的不对,这个应该差不多
reinput

12-03-12 21:34

0
{1}
 range1:=c/ref(c,1);
range2:=c/ref(c,2);
border1:=range1>=0.959 and range1<=1.041; //单日涨跌幅4%以内
cond1:=range2>=0.989 and range2<=1.011;//三日涨跌幅1%以内
cond2:=count(border1,3)>0; //3日内出现过涨跌4%
singal:cond1 and cond2
刷新 首页上一页 下一页末页
提交