以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (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=9122) |
-- 作者:ysfckgx -- 发布时间:2011/11/24 21:28:07 -- 请老师帮忙编一个模型 1、开仓(A,开多;B,开空;有持仓条件成立也不开仓、前面平仓是止损平仓时开仓手数是亏损仓位的2倍、最多仓位开到32手、是盈利平仓时就开1手,)。 2、平仓(止损止盈平仓,10点止损30点止盈,收盘平仓1458时间平仓)。 3、要可以全自动交易。 谢谢! |
-- 作者:26327756l -- 发布时间:2011/11/25 8:26:07 -- 开仓条件是什么? |
-- 作者:ysfckgx -- 发布时间:2011/11/25 8:49:51 -- 开仓条件就是A与B,我自己会编,我就是要学会怎样编后面的源码 |
-- 作者:jinzhe -- 发布时间:2011/11/25 9:33:25 -- 前面平仓是止损平仓时开仓手数是亏损仓位的2倍、最多仓位开到32手、是盈利平仓时就开1手 这句话能否详细的讲解一下,不明白 |
-- 作者:jinzhe -- 发布时间:2011/11/25 10:15:51 -- td:= (time>=090000 and time<=145800); if A and td then buy(holding=0,1,thisclose); if B and td then buyshort(holding=0,1,thisclose); //止损止盈平仓,10点止损30点止盈 if c-enterprice >=30 or enterprice-c>=10 then
if numprofit(1)>0 and A and td then buy(holding=0,1,thisclose); if numprofit(1)>0 and B and td then buyshort(holding=0,1,thisclose); if numprofit(1)<0 and A and td and aa<=32 then begin if numprofit(1)<0 and b and td and bb<=32 then begin if time>145800 then begin |
-- 作者:ysfckgx -- 发布时间:2011/11/25 12:50:30 -- 我加载试试,(前面一次平仓如果是亏损平仓,接下来的开仓就是前面平仓手数的2倍,如果是盈利平仓,接下来的开仓就是1手)。 |
-- 作者:ysfckgx -- 发布时间:2011/11/25 13:05:31 -- 模型与我的要求不一致。模型每次开仓都是1手,我要的是前面亏损平仓,接下来就开前面仓位的2倍,直到32手。前面盈利平仓就回到1手开仓 |
-- 作者:jinzhe -- 发布时间:2011/11/25 13:43:07 -- 不好意思,上面写得逻辑不够严密,刚改了下,再试试
variable:aa=2,bb=2,cc=0,dd=0; if B and td and dd=0 then begin //止损止盈平仓,10点止损30点止盈 if c-enterprice >=30 or enterprice-c>=10 then
if numprofit(1)>0 and A and td and cc=1 then buy(holding=0,1,thisclose); if numprofit(1)>0 and B and td and dd=1 then buyshort(holding=0,1,thisclose); if numprofit(1)<0 and A and td and aa<=32 and cc=1 then begin if numprofit(1)<0 and b and td and bb<=32 and dd=1then begin if time>145800 then begin |
-- 作者:fly -- 发布时间:2011/11/25 14:32:19 -- //1分钟K线 variable:buynum=1,sellnum=1;//控制开多和开空的数量
if long and holding=0 then buy(1,buynum,thisclose);
//止损止盈平仓,10个最小变动价位止损,30个最小变动价位止损止盈
if short and holding=0 then buyshort(1,sellnum,thisclose);
|
-- 作者:ysfckgx -- 发布时间:2011/11/25 16:05:09 -- 还是不对,下面一种就开到2手,又回到1手了 |