打印本文打印本文 关闭窗口关闭窗口

K线走完模式

作者:金字塔 来源:cxh99.com 发布时间:2016年04月27日
  • 咨询内容: 平多:sell(tmp<0 and holding>0,手数,marketr);平空:sellshort(tmp>0 and holding<0,手数,marketr);开多:buy(tmp>0 and holding<=0,手数,marketr);开空:buyshort(tmp<0 and holding>=0,手数,marketr);
    今天晚上黄金多次出现不成交,5分周期

     

  • 金字塔客服: if holding=0 then begin if tmp>0 then  buy(1,手数,marketr);endif holding=0 then begin if tmp<0 then  buyshort(1,手数,marketr);  endif holding>0 then begin if tmp<0 then begin  sell(1,holding,marketr);  buyshort(1,手数,marketr); endendif holding<0 then begin if tmp>0 then begin  sellshort(1,holding,marketr);  buy(1,手数,marketr); endend这2种模式那个优?

     

  • 用户回复: 只要能实现你想法的就可以了,没什么优不优的
打印本文打印本文 关闭窗口关闭窗口