以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://weistock.com/bbs/index.asp) -- 策略编写求助区 (http://weistock.com/bbs/list.asp?boardid=11) ---- 新手求助 求动态止盈方法 (http://weistock.com/bbs/dispbbs.asp?boardid=11&id=137622) |
-- 作者:qaz1899 -- 发布时间:2016/8/6 15:09:22 -- 新手求助 求动态止盈方法 条件一 盈利7个点 回落3个点跟踪止盈 盈利到15个点 执行条件2 条件一不再执行 if holding=0 and 开多条件 THEN BEGIN 开多:BUY(1,ss,MARKET)COLORRED; HIGHPRICE:=ENTERPRICE; //将开仓价保存到最高价 end if holding=0 and 开空条件 THEN BEGIN 开空:BUYSHORT(1,ss,MARKET)COLORGREEN; end 多头止损:=(enterprice-close)>=zs; 多头止盈:=h>enterprice+15; 空头止损:=(close-enterprice)>=zs; 空头止盈:=h<enterprice-15; //止损止盈控制======================================= if holding>0 and 多头止损 THEN BEGIN 多损:SELL(1,ss,MARKET)COLORYELLOW; end if holding>0 and 多头止盈 THEN BEGIN 多盈:SELL(1,ss,MARKET)COLORYELLOW; end if holding>0 and 多头保盈 THEN BEGIN 多保:SELL(1,ss,MARKET)COLORYELLOW; end //=================================================== if holding<0 and 空头止损 THEN BEGIN 空损:SELLSHORT(1,ss,MARKET)COLORYELLOW; end if holding<0 and 空头止盈 THEN BEGIN 空盈:SELLSHORT(1,ss,MARKET)COLORYELLOW; end |
-- 作者:fly -- 发布时间:2016/8/10 13:25:16 -- “移动止赢” 范例,供您参考
http://www.weistock.com/bbs/dispbbs.asp?boardid=10&Id=2160
|