当2处以后出现价格大于等于a,我们就平仓,怎么编写 [金字塔]
- 咨询内容:
1处有一手空单,当运行到2处(C上穿白线(ma(c,30))的时候,我们停下来计算一个值a,a=ma(c,30)+2*atr (ma(c,30)和ATR都是2处这根K线的。。。当2处以后出现价格大于等于a,我们就平仓。怎么编写···
- 金字塔客服: 工作人员在处理,稍后回复
- 用户回复: 谢谢
- 网友回复:
{1处有一手空单,当运行到2处(C上穿白线(ma(c,30))的时候,
我们停下来计算一个值a,a=ma(c,30)+2*atr
(ma(c,30)和ATR都是2处这根K线的。。。
当2处以后出现价格大于等于a,我们就平仓。怎么编写···
5分钟周期股指}
variable:aa=0,bb=0;
ma30:=ma(c,30);
atr:=stkindi('','atr.atr',0,2);
cond:=开空条件;
if cond and holding=0 then begin
buyshort(1,1,market);
aa:=0;
end
if aa=0 and holding<0 and cross(c,ma30) then begin
aa:=1;
bb:=ma30+2*atr;
endif aa=1 and c>bb then begin
仅供参考
sellshort(1,0,market);
aa:=0;
bb:=0;
end - 网友回复:
ma30:=ma(c,30);
cond1:=holding<0;
cond2:=cross(c,ma30);
variable:a:=0;if cond2 and cond1 then
begin
a:=ma30+2*STKINDI('' ,'ATR.ATR' ,0 ,1 ,0 );hh:=c;
end
if hh<c then sellshort(1,0,market);仅供参考
有思路,想编写各种指标公式,程序化交易模型,选股公式,预警公式的朋友
可联系技术人员 QQ: 262069696 进行 有偿 编写!(不贵!点击查看价格!)