资源加载中... loading...

exchange.SetPrecision

exchange.SetPrecision()函数用于设置exchange交易所对象的价格下单量的精度,设置后系统会自动忽略数据多余的部分。

exchange.SetPrecision(pricePrecision, amountPrecision)

pricePrecision参数用来控制价格数据的精度。 pricePrecision true number amountPrecision参数用来控制下单量数据的精度。 amountPrecision true number

function main(){
    // 设置价格小数位精度为2位,品种下单量小数位精度为3位
    exchange.SetPrecision(2, 3)
}
def main():
    exchange.SetPrecision(2, 3)
void main() {
    exchange.SetPrecision(2, 3);
}

设置价格精度、下单量精度。

回测系统不支持该函数,回测系统的数值精度会自动处理。 pricePrecisionamountPrecision都必须是整型的数值。

{@fun/Trade/exchange.Buy exchange.Buy}, {@fun/Trade/exchange.Sell exchange.Sell}

exchange.GetHistoryOrders exchange.SetRate