8
Seguir
21
Seguidores

Ayuda

Creado el: 2021-12-05 06:22:32, Actualizado el: 2021-12-05 06:49:38
comments   3
hits   935

Código

def short(direction,price,amount):
    exchange.SetDirection('sell')
    logtype = LOG_TYPE_SELL
    para = ""
    para += "market='"+exchange.GetCurrency().replace('_USD', '-PERP') + "'"
    para += "&side='"+ direction + "'"
    para += "&price=" + str(price)
    para += "&type='" + "'limit'" + "'"
    para += "&size=" + str(amount)
    if direction == "'buy'":
        para += "&reduceOnly=true"
        logtype = LOG_TYPE_BUY
        exchange.SetDirection('closesell')
    para+="&postOnly=true"
    # para+="&timestamp="+ str(int(UnixNano() / 1000000))
    ret = exchange.IO("api", "POST", '/orders', para)
    exchange.Log(logtype, price, amount)
    return ret

La dirección real es https://www.fmz.com/robot/407656