有请老师帮编写个策略
作者:金字塔 来源:cxh99.com 发布时间:2014年02月01日
- 咨询内容:
有请老师帮编写个模型:当天的涨幅超过1%就买入开仓,跌幅超过1%就卖出开仓,是指令价达到1%就开仓,不用等收盘价,到14.55就平仓怎么编写?
- 金字塔客服:
涨幅跌幅如何定义?
(最高价-当日开盘)/当日开盘?
[此贴子已经被作者于2013/12/25 15:10:07编辑过]
- 用户回复:
最新价比昨天收盘价>1%
- 网友回复:
zuoshou:ref(close,todaybar);
if (h-zuoshou)/zuoshou>=0.01 then buy(holding=0,1,market);
if (l-zuoshou)/l<=-0.01 then buyshort(holding=0,1,market);
if time>=145500 then begin
sellshort(1,0,market);
sell(1,0,market);
end
- 网友回复:
怎么快收盘的时候又开仓?