def CancelPendingOrders():
orders = _C(exchange.GetOrders)
Log(len(orders))
for order in orders:
exchange.CancelOrder(order.Id,order)
def onTick():
depth = _C(exchange.GetDepth)
askprice = depth.Asks[0].Price-0.01
bidprice = depth.Bids[0].Price+0.01
if bidprice<askprice:
bidprice = askprice+0.01
CancelPendingOrders()
exchange.Sell(askprice,30)
exchange.Buy(bidprice,30)
def main():
while (true):
onTick()
Sleep(2000)
উদ্ভাবকগণ - ক্যোটিফিকেশন - ছোট্ট স্বপ্নআপনি এই পোস্টটি দেখতে পারেনঃ https://www.fmz.com/bbs-topic/662 বাস্তব ডিস্ক স্তরের পুনরায় পরিমাপ এবং অ্যালগরিদম স্তরের পুনরায় পরিমাপ পুনরায় পরিমাপের পদ্ধতি ভিন্ন।