0
ध्यान केंद्रित करना
0
समर्थक

सिमुलेशन स्तर और वास्तविक स्तर के बैकटेस्ट परिणाम अलग-अलग क्यों हैं? दोनों सेटिंग्स Huobi.com की BTC_USDT हैं। रणनीतियों के लिए पोस्ट देखें

में बनाया: 2019-08-01 14:54:24, को अपडेट: 2019-08-01 15:19:30
comments   1
hits   1868
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)