以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://222.73.7.161/bbs/index.asp)
--  策略编写求助区  (http://222.73.7.161/bbs/list.asp?boardid=11)
----  老师,帮我写个模型。感激不尽  (http://222.73.7.161/bbs/dispbbs.asp?boardid=11&id=27597)

--  作者:漫步金字塔
--  发布时间:2012/9/16 22:48:53
--  老师,帮我写个模型。感激不尽

每天价格上涨A个点做多,下降A个点做空。

B个点的最初止损,C个点浮动止损,止损后反手。若连续亏损3次(注意不是止损,是亏损,不计算昨天的)直接平仓并且不反手。

 

所有交易D个点止盈,最后一小时不入场,最后两分钟平仓。

 

怎么写呢?老师!!!谢谢老师了。


--  作者:jinzhe
--  发布时间:2012/9/17 9:36:04
--  
处理中,预计上午收盘前完成
--  作者:jinzhe
--  发布时间:2012/9/17 10:03:36
--  

input:a(10),b(8),cc(5),d(8);
variable:hh=0,ll=0;
dayopen:=valuewhen(date<>ref(date,1),o);//今开

time1:= time>090100 and time <140000;//交易时间

time2:= time>145800 and time<= 150000;//最后2分钟强平

if c>dayopen+a*mindiff and time1 then begin
buy(holding=0,1,market);
hh:=h;
end//上涨A个点做多
if h>hh then hh:=h;
if c<dayopen-a*mindiff  and time1 then begin
buyshort(holding=0,1,market);
ll:=l;
end//下跌A个点做空
 if l<ll then ll:=l;
if holding>0 and enterprice-c>=b*mindiff then begin
sell(holding>0,0,market);
buyshort(holding=0,1,market);
end//多头止损反手

if holding<0 and c-enterprice>=b*mindiff  then begin
sellshort(holding<0,0,market);
buy(holding=0,1,market);
end//空头止损反手
if hh-c>=cc*mindiff and holding>0 then sell(holding>0,0,market);//CC个点多头浮动止损,下为空头

if c-ll>=cc*mindiff and holding>0 then sellshort(holding<0,0,market);

if numlosstrade>=3 and holding>0 then sell(holding>0,0,market);//多头连亏三次后平仓不反手,下为空头

if numlosstrade>=3 and holding<0 then sellshort(holding<0,0,market);

if holding>0 and c>=enterprice+d*mindiff then sell(holding>0,0,market);//多头d个点止盈
if holding<0 and c<=enterprice-d*mindiff then sell(holding<0,0,market);//多头d个点止盈

if time2 then BEGIN
sell(1,0,market);
sellshort(1,0,market);
end//收盘前平仓


--  作者:jinzhe
--  发布时间:2012/9/17 10:04:22
--  

有些细节咨询下 ,高a点做多,低a点做空,是不是每天按照这个条件就做一次,还是条件满足了就下单?

不限制下的话感觉不停的再开单

[此贴子已经被作者于2012-9-17 10:04:41编辑过]

--  作者:漫步金字塔
--  发布时间:2012/9/17 10:05:20
--  

每天按这个条件就做一次,老师。


--  作者:漫步金字塔
--  发布时间:2012/9/17 10:20:06
--  

老师,这个代码,会不会第三次亏损后反手,然后又平仓呢???

因为前面反手的代码中并没有加入亏损次数的限制。然后后面再平仓,也就是三次亏损后开仓后又立即平仓。


--  作者:jinzhe
--  发布时间:2012/9/17 13:14:58
--  
我再改改,争取今天改完
--  作者:漫步金字塔
--  发布时间:2012/9/17 13:45:30
--  
图片点击可在新窗口打开查看老师好人啊!!!!
--  作者:漫步金字塔
--  发布时间:2012/9/17 15:26:38
--  

老师,还在吗?程序写好了吗?


--  作者:jinzhe
--  发布时间:2012/9/18 9:25:35
--  

容我整理下思路。。。没灵感了。。。