以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  交易策略发布专区  (http://weistock.com/bbs/list.asp?boardid=10)
----  [交易系统]考夫曼自适应移动均线系统  (http://weistock.com/bbs/dispbbs.asp?boardid=10&id=8101)

--  作者:z7c9
--  发布时间:2011/9/19 16:55:42
--  [交易系统]考夫曼自适应移动均线系统

runmode:0;

input:length1(10,5,60,5);
input:length2(5,5,60,5);

ama:=md(close,length1);

ama1:=ema(ama,length2);

entrylongcond:=ref(cross(ama,ama1),1);
entryshortcond:=ref(cross(ama1,ama),1);

if holding=0 then begin
 if entrylongcond then
  buy(1,1,limitr,open);
end

if holding=0 then begin
 if entryshortcond then
  buyshort(1,1,limitr,open);
end

if holding>0 then begin
 if entryshortcond then begin
  sell(1,holding,limitr,open);
  buyshort(1,1,limitr,open);
 end
end

if holding<0 then begin
 if entrylongcond then begin
  sellshort(1,holding,limitr,open);
  buy(1,1,limitr,open);
 end
end

盈亏:asset-50000,noaxis,colorred,linethick2;

[此贴子已经被作者于2011-10-3 11:19:41编辑过]

--  作者:xian_0_9
--  发布时间:2011/9/20 19:22:37
--  
图片点击可在新窗口打开查看
--  作者:翻手为云
--  发布时间:2013/1/10 8:52:18
--  
不错
--  作者:悦诗风吟baby
--  发布时间:2013/1/15 14:50:41
--  
看一下
--  作者:akasha3322
--  发布时间:2013/3/27 20:00:13
--  
谢谢分享
--  作者:FURUI888
--  发布时间:2015/8/20 19:35:09
--  
能不能用中文表述啊
--  作者:yangangzhang
--  发布时间:2015/10/30 11:26:07
--  
谢谢,请问可以中文注解一下吗,现在我还是初级阶段,谢谢