1.工作人员上班时间为周一-----周五.8:30---17:30
其它时间,全是论坛志愿者在维护
2.你的这个策略基本上是亏钱的.怎么着盈利点数也要大于亏损点数,
DIFF := EMA(CLOSE,12) - EMA(CLOSE,26);
DEA := EMA(DIFF,9);
MACD := 2*(DIFF-DEA), COLORSTICK;
num:=1;
ccm:=cross(DIFF ,0);
cmc:=cross(0,DIFF );
//多单,盈利5点平仓 亏7点平仓
if holding>0 and c>5+enterprice then sell(1,num,market);
if holding>0 and c<enterprice-5 then sell(1,num,market);
//空单,盈利6点平仓 亏8点平仓
if holding<0 and c<enterprice-5 then sell(1,num,market);
if holding<0 and c<enterprice+5 then sell(1,num,market);
//顺序必须主要需要根据仓位先平后开的原则
if ccm then
begin
//平空开多
sellshort(holding<0 and ccm,num,market);
buy(holding=0,num,market);
end
if cmc then
begin
//平多开空
sell(holding>0 and cmc,num,market);
buyshort(holding=0,num,market);
end