请问ZDXY,ZKXY,BKVOL,SKVOL分别指的是什么? ZDXY,ZKXY是指标上一些代码,跟这个问题无关 BKVOL,SKVOL应该是文华的检测 多头和空头 持仓 |
if holding=0 and 做多 then begin
buy(1,1,market);
end
if holding=0 and 做空 then begin
buyshort(1,1,market);
end
if 做多 then begin
sellshort(1,0,market);
buy(holding=0,1,market);
end
if 做空 then begin
sell(1,0,market);
buyshort(holding=0,1,market);
end
http://www.weistock.com/bbs/dispbbs.asp?boardid=10&Id=9439
参考密集里面的第八条,看阿火后面多加说明的