程序代码:
input:ss(1,1,100,1);
input:A(5,1,20,1);
input:B(20,3,30,1);
maa:=ma(close,a);
mab:=ma(close,b);
buycond:cross(maa,mab);
sellcond:cross(mab,maa);
if holding=0 and buycond then
begin
buy(1,ss,thisclose);
end
if holding> and sellcond then
begin
sell(1,ss,thisclose);
end
当SS:手数调成大于10时,在图表交易时最大只能显示为9 ,实盘交易下单的数量也是9,请问是啥原因造成的 ? 是个BUG....还是别的?
在哪儿修改虚拟资金?
好了