Skip to main content

No project description provided

Project description

sunny-order-splitter-python-sdk

安装

pip install sunny-order-splitter --upgrade

现货使用方式

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()

合约使用方式(币本位)

现在只支持单项持仓,如果现在使用的是双向模式,会先改成单向模式

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

sunny_order_splitter-0.2.0.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

sunny_order_splitter-0.2.0-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file sunny_order_splitter-0.2.0.tar.gz.

File metadata

  • Download URL: sunny_order_splitter-0.2.0.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for sunny_order_splitter-0.2.0.tar.gz
Algorithm Hash digest
SHA256 eff0d9cbf7fb611a5fd48c8e45a3ad330c6ce5154f6bd5cb66bae510b0dfea20
MD5 d30a1577eb27472a97cd433613e0b957
BLAKE2b-256 498cd68fce6b6708c05bf5ab26f1d0fe131cfed86d4d95c40c4b19f7807b740c

See more details on using hashes here.

File details

Details for the file sunny_order_splitter-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for sunny_order_splitter-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 64040d76b8dc9a05c76911442fe8b89fb929f8d45961d08feea248aa95f2b871
MD5 35ab8ac7f9e5a057493190e12b04ad58
BLAKE2b-256 dd3eb8c33231f133b68ddfd7670f0b73090aa0d4cbf2862fc0d54d5c6976919d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page