mango-explorer/bin/cancel-my-orders

47 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-06-25 02:33:40 -07:00
#!/usr/bin/env pyston3
import argparse
import logging
import os
import os.path
import sys
from solana.publickey import PublicKey
2021-06-25 02:33:40 -07:00
sys.path.insert(0, os.path.abspath(
os.path.join(os.path.dirname(__file__), "..")))
import mango # nopep8
parser = argparse.ArgumentParser(description="Cancels all orders on a market from the current wallet.")
mango.ContextBuilder.add_command_line_parameters(parser)
2021-06-25 02:33:40 -07:00
mango.Wallet.add_command_line_parameters(parser)
parser.add_argument("--market", type=str, required=True, help="market symbol where orders are placed (e.g. ETH/USDC)")
parser.add_argument("--account-address", type=PublicKey,
help="address of the specific account to use, if more than one available")
parser.add_argument("--dry-run", action="store_true", default=False,
help="runs as read-only and does not perform any transactions")
2021-06-25 02:33:40 -07:00
args = parser.parse_args()
logging.getLogger().setLevel(args.log_level)
logging.warning(mango.WARNING_DISCLAIMER_TEXT)
context = mango.ContextBuilder.from_command_line_parameters(args)
2021-06-25 02:33:40 -07:00
wallet = mango.Wallet.from_command_line_parameters_or_raise(args)
group = mango.Group.load(context, context.group_address)
account = mango.Account.load_for_owner_by_address(context, wallet.address, group, args.account_address)
2021-06-25 02:33:40 -07:00
market_symbol = args.market.upper()
market = context.market_lookup.find_by_symbol(market_symbol)
if market is None:
raise Exception(f"Could not find market {market_symbol}")
market_operations = mango.create_market_operations(context, wallet, account, market, args.dry_run)
2021-06-25 02:33:40 -07:00
orders = market_operations.load_my_orders()
if len(orders) == 0:
print(f"No open orders on {market.symbol}")
else:
for order in orders:
print("Cancelling:", order)
cancellation = market_operations.cancel_order(order)
print(cancellation)