策略雷達(版本編號3.08.09)
抓取 內外盤資訊 , 有些商品會出現 錯誤代碼5029
請問如何處理?
//------------- 程式碼如下:
variable: xInSell(0);
variable: xOutBuy(0);
if barfreq = "Tick" or barfreq = "Min" then
begin
xInSell=GetField("內盤量","Tick");//單位:元
xOutBuy=GetField("外盤量","Tick");//單位:元
end else begin
xInSell=GetField("內盤量","D");//單位:元 內盤(賣)
xOutBuy=GetField("外盤量","D");//單位:元 外盤(買)
end;
ret = 0;
1 評論