以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  策略编写求助区  (http://weistock.com/bbs/list.asp?boardid=11)
----  [求助]关于k线价格定义问题  (http://weistock.com/bbs/dispbbs.asp?boardid=11&id=9810)

--  作者:angus8285
--  发布时间:2012/2/2 22:47:52
--  [求助]关于k线价格定义问题
    怎么设计一个模型,时间周期是30分钟k线,然后定义开盘后第二根和第三根的高低点,接下来价格突破定义的高点做多,以定义的低点做止损;反之价格突破定义的低点做空,以定义的高点做止损
--  作者:jinzhe
--  发布时间:2012/2/3 8:56:13
--  
第二根和第三根高低点指的是 :第二根和第三跟k线的最高价和最低价?
--  作者:26327756l
--  发布时间:2012/2/3 9:35:55
--  

仅供参考

variable:ll=0,hh=0;
t1:=LLV(l,2);
t2:=HHV(h,2);
if date<>ref(date,3) then
begin
   ll:=t1;
   hh:=t2;
end

if c>hh then  buy(holding=0,1,market);
if c<ll then  sell(holding>0,0,market);
if c<ll then  buyshort(holding=0,1,market);
if c>hh then  sellshort(holding<0,0,market);

[此贴子已经被作者于2012-2-3 9:45:34编辑过]