MC软件percenttrailing止盈语句,如何按at market方式下单[MC公式]
相关标签:期权与期货的区别 、 期货期权学院 、 期货期权入门 、 期货期权远期 、 期货与期权论文 、 商品期货期权 、 豆粕期货期权 、 期权对冲期货 、 期权和期货优劣 、 期货期权交易 、 期货期权的比较 、 期货期权实训 、 期货投资与期权 、 股指期货期权 、 期货期权开户 、 percenttrailing止盈语句代码如下:
[IntrabarOrderGeneration=true];
input:target(10),Percent(30);
// 来源:程序化99( WWW.CXH99.COM ),BS(NumericSimple);
vars:intrabarpersist mp(0),intrabarpersist flagB(0),intrabarpersist flagS(0), intrabarpersist valueh(0),intrabarpersist valuel(999999);
once cleardebug;
mp=marketposition;
if mp<>mp[1] then
begin
valueh=0;
valuel=999999;
flagb=0;
flags=0;
end;
if mp>0 and valueh<=h then
valueh=h;
if mp<0 and valuel>=l then
valuel=l;
if (mp>0 and valueh-entryprice>target) then
flagB=1;
if mp<0 and entryprice-valuel>target then
flags=1;
if mp=1 and flagB=1 then
sell("L_trailing") next bar at valueh-Percent*(valueh-entryprice)/100 stop;
if mp=-1 and flagS=1 then
buytocover("S_trailing") next bar at valuel+percent*(entryprice-valuel)/100 stop;
我在实际使用时遇到了一个情况:市场价格变动太快,导致止盈指令发出后没有成交。
我的诉求是用at market的方式下单,请问老师应该如何改动上述语句才能达到目的,谢谢!
公式导入教程: 【通达信公式源码导入方法教程】 【同花顺公式源码导入方法教程】 【大智慧新一代公式源码导入方法教程】
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 511411198 进行 有偿 编写!(不贵!点击查看价格!)
相关文章
-
没有相关内容