以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  交易策略发布专区  (http://weistock.com/bbs/list.asp?boardid=10)
----  [技术指标]趋势跟踪  (http://weistock.com/bbs/dispbbs.asp?boardid=10&id=9091)

--  作者:z7c9
--  发布时间:2011/11/22 17:57:40
--  [技术指标]趋势跟踪

图片点击可在新窗口打开查看

 

runmode:0;

input:length(20,5,60,5);
input:ratio(4,1,5,1);

variable:trend=0;
variable:stopprice=0;

prebarhigh:=ref(high,1);
prebarlow:=ref(low,1);

atr:=trimprice(ref(ema(high-low,length),1));
trailingstop:=ratio*atr;

if barpos>length and trend=0 then begin
 trend:=1;
 stopprice:=prebarlow-trailingstop;
 drawicon(1,prebarlow-trailingstop,8,0);
 drawtext(1,prebarlow-trailingstop,\'开多\',colorred,1); 
end

if trend=1 then begin
 if prebarlow-trailingstop>stopprice then
  stopprice:=prebarlow-trailingstop;
  
 if low<=stopprice then begin
  trend:=-1;
  stopprice:=prebarhigh+trailingstop;
  drawicon(1,prebarhigh+trailingstop,9,0);
  drawtext(1,prebarhigh+trailingstop,\'开空\',colorgreen,1);  
 end
 
 stickline(close>=open,high,close,1,1,colorred);
 stickline(close>=open,close,open,10,1,colorred);
 stickline(close>=open,open,low,1,1,colorred);
 stickline(close<open,high,open,1,0,colorred);
 stickline(close<open,open,close,10,0,colorred);
 stickline(close<open,close,low,1,0,colorred); 
end

if trend=-1 then begin
 if prebarhigh+trailingstop<stopprice then
  stopprice:=prebarhigh+trailingstop;
  
 if high>=stopprice then begin
  trend:=1;  
  stopprice:=prebarlow-trailingstop;
  drawicon(1,prebarlow-trailingstop,8,0);
  drawtext(1,prebarlow-trailingstop,\'开多\',colorred,1);  
 end
 
 stickline(close>=open,high,close,1,1,colorgreen);
 stickline(close>=open,close,open,10,1,colorgreen);
 stickline(close>=open,open,low,1,1,colorgreen);
 stickline(close<open,high,open,1,0,colorgreen);
 stickline(close<open,open,close,10,0,colorgreen);
 stickline(close<open,close,low,1,0,colorgreen);   
end

drawicon(trend=1,stopprice,10);
drawicon(trend=-1,stopprice,11);

[此贴子已经被作者于2011-11-22 18:03:44编辑过]

--  作者:wangz01
--  发布时间:2012/6/23 23:05:39
--  
dddddddddddddddddddddddddddddd
--  作者:Q1304230834
--  发布时间:2012/9/21 13:16:13
--  
图片点击可在新窗口打开查看
--  作者:yanxc
--  发布时间:2012/9/25 20:18:12
--  
有人修改为交易系统测试吗?
--  作者:木鱼石传说
--  发布时间:2013/6/29 16:58:39
--  
提示 trend不能与系统相同,请教怎么修正?
--  作者:木鱼石传说
--  发布时间:2013/7/2 8:41:55
--  
请教版主,上述代码里面有没有含有未来函数?

还有trend系统提示与系统相符,怎么解决加载问题?

--  作者:风度翩翩
--  发布时间:2017/8/31 7:41:52
--  
不错的指标,和我写的相似,高低价加个N倍ATR,跟随限定趋势!
--  作者:jeson888
--  发布时间:2017/11/18 16:30:43
--  
不错的,跟随系统,如果能配合均线,会更好
--  作者:幸运60
--  发布时间:2018/12/15 20:01:35
--  
测试通不过
--  作者:topdo
--  发布时间:2018/12/16 19:20:13
--  
思路非常不错