No project description provided
Project description
sunny-order-splitter-python-sdk
安装
pip install sunny-order-splitter --upgrade
现货使用方式
测试网地址 : https://testnet.binance.vision
from sunny_order_splitter.binance_spot import SpotOrderSplitter
def main():
production = False # True正式环境,不传默认True
api_key = "EpcFiKyNEZ6GwpW4w1px60og0SYy0W4A2slX32UeH2hV9FjJfOdKPJDY9NNlbRrB"
secret_key = "OeIwlnfB0ImKdqTq4n4jLqYxdzYO87Lc8Mr2Z1bbCqraerpomMUJMD7EvtyIFFWh"
symbol = 'BTCUSDT'
sos = SpotOrderSplitter(symbol, api_key, secret_key, production)
# Call split_order method with test parameters
params = {
"side": "BUY",
"orderAmount": 90,
#"totalAmount": 100,
"percentTotalAmount": 80, # 总金额百分比
"interval": 2
}
"""
params = {
"side": "SELL",
"orderAmount": 1,
#"totalAmount": 100,
"percentTotalAmount": 100,
"interval": 2
}
"""
result = sos.split_order(params)
if result:
print(f"Orders placed successfully: {result['num_orders_success']} out of {result['num_orders']}")
print(f"Total quantity bought: {result['quantity']}")
else:
print("Failed to place orders.")
if __name__ == "__main__":
main()
合约使用方式(币本位)
现在只支持单项持仓,如果现在使用的是双向模式,会先改成单向模式
测试网地址: https://testnet.binancefuture.com
from sunny_order_splitter.binance_umfutures import UMFuturesOrderSplitter
def main():
production = False # Set to True for production
api_key = "63551008d09ed3a1d619644fbef3b27469b9518f0218c83e499843973e703146"
secret_key = "ae8a0dd6278350d19d796ceade26e7acf552b64178398a1dd9fb8f7191ccbddb"
symbol = 'BTCUSDT'
umfos = UMFuturesOrderSplitter(symbol, api_key, secret_key, production)
# Call split_order method with test parameters
params = {
"side": "SELL", # "BUY 多" or "SELL 空"
"orderAmount": 1000,
#"totalAmount": 200,
"percentTotalAmount": 20, # 总金额百分比
"leverage": 5, # 开仓杠杆 最大5倍
"interval": 5 # 间隔时间
}
#开仓
result = umfos.split_order(params)
if result:
print(f"Orders placed successfully: {result['num_orders_success']} out of {result['num_orders']}")
print(f"Total quantity bought: {result['quantity']}")
else:
print("Failed to place orders.")
#平仓
results_close_order = umfos.close_position()
if results_close_order:
print(f"Order closed successfully:{results_close_order['symbol']} {results_close_order['quantity']}")
else:
print("Failed to close order.")
if __name__ == "__main__":
main()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sunny_order_splitter-0.2.3.tar.gz
.
File metadata
- Download URL: sunny_order_splitter-0.2.3.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddc16bcb4cef45c79c9b322fd587ed5aa5863bd5273bbd387d43111d8ac16f84 |
|
MD5 | 98d2536f88eca475351e62b4ecf73ec5 |
|
BLAKE2b-256 | e13cb5c989d08eb25ee58c2b591d1931a2055692d4303d4aae0d8c7f2591fe78 |
File details
Details for the file sunny_order_splitter-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: sunny_order_splitter-0.2.3-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84887d36efabbf172b484302dbfc7b5212a032d10b70164237bd6d3161de4910 |
|
MD5 | a883c08a3dbf54234cc58aec89a49c4f |
|
BLAKE2b-256 | 4401ed082189cb5456565bd8d969660f39b014d1db40ca89251b4e0698b64b54 |