能否只是补充自选板块呢,因为很多什么指数、基金、债卷等是不需要的啊
ma10:=ma(c,10);
orderc:=extgbdata('1');
if cross(ma5,ma10) then
tbuy(tholding=0,100,mkt);//5日均线上穿10日的时候开仓
if c>=TAVGENTERPRICE*1.05 then tsell(tholding>0,0,mkt);//上涨5%后平仓,也就是现价是持仓均价的1.05%时平仓
if topenprofit<0 and cross(ma5,ma10) then begin
tbuy(tholding>0,100,mkt);
orderc:=orderc+1;
extgbdataset('orderc',orderc);
end //当亏损的时候持有接着补,orderc记录补仓次数
msgout(tholding<>ref(tholding,1),orderc)//当仓位发生变化时输出记录的仓位值
---------怎样实现图表交易