平仓信号出来后隔2根K线再启动开仓条件怎么写? [金字塔]
- 咨询内容:
buycondition:=c>ma(c,20);
sellcondition:=c<ma(c,20);
buycond:=cross(ma(c,5),ma(c,10));
sellcond:=cross(ma(c,10),ma(c,5));
if holding>0 and c<enterprice-20 then sell(1,1,limitr,c);
if holding<0 and c>enterprice+20 then sellshort(1,1,limitr,c);
if holding>0 and sellcondition then sell(1,1,limitr,c);
if holding<0 and buycondition then sellshort(1,1,limitr,c);
if holding>0 and sellcond then sell(1,1,limitr,c);
if holding<0 and buycond then sellshort(1,1,limitr,c);
if holding=0 and buycond then buy(1,1,limitr,c);
if holding=0 and sellcond then buyshort(1,1,limitr,c);
问题:
多单平仓后(多种平仓策略)如果满足做空条件,不马上做空,而是等过2根K线之后,满足做空条件则做空
空单平仓后(多种平仓策略)如果满足做多条件,不马上做多,而是等过2跟K先之后,满足做多条件则做多
以上思路如何实现?
- 金字塔客服:
参考
得到当前位置之前上N次信号指定类型距当前周期
[此贴子已经被作者于2012-1-16 8:46:54编辑过]
用法:
TYPEBAR(N,TYPE)N表示上次信号,
TYPE表示信号类型 0、无信号1、开多2、平多3、开空;4、平空
例如:TYPEBAR(2,1)表示:倒数第2个开多信号历时
该函数仅在逐K线计算模式下有效, 并且只能用在BUY,SELL等新图表交易系统中,不能与旧图表交易系统ENTERLONG,EXITLONG等混用。
所属函数组:交易系统 - 用户回复:
单独在开多语句中加入 typebar(1,4)>2 或者在开空语句中加入typebar(1,2)>2 信号都能正常显示。可是在开多和开空语句中同时加入条件后,信号都消失了,这是为什么?
- 网友回复:
估计是您使用有误,直接把代码贴出来看看--附带简要文字说明
- 网友回复:
buycondition:=c>ma(c,20);
sellcondition:=c<ma(c,20);
buycond:=cross(ma(c,5),ma(c,10));
sellcond:=cross(ma(c,10),ma(c,5));
if holding>0 and c<enterprice-20 then sell(1,1,limitr,c);
if holding<0 and c>enterprice+20 then sellshort(1,1,limitr,c);
if holding>0 and sellcondition then sell(1,1,limitr,c);
if holding<0 and buycondition then sellshort(1,1,limitr,c);
if holding>0 and sellcond then sell(1,1,limitr,c);
if holding<0 and buycond then sellshort(1,1,limitr,c);
if holding=0 and buycond and typebar(1,4)>2 then buy(1,1,limitr,c);
if holding=0 and sellcond and typebar(1,2)>2 then buyshort(1,1,limitr,c);
- 上一篇:错误的时间错误的成交
- 下一篇:[建议]增加一个刷新账户信息(持仓、委托…
相关文章
-
没有相关内容