Appearance
Account & Positions
Read-only tools for inspecting your Strike account. None of these take arguments, and none of them mutate state.
strike_get_account_balance
Returns the Strike Finance account object — balances, equity, margin usage and set leverage. All monetary fields are USD-denominated, regardless of account name or collateral type.
Arguments: none
Example prompt:
What's my CrowdTime / Strike balance right now?
strike_get_open_orders
Returns every currently open (resting) order on the account.
Arguments: none
Example prompt:
List my open Strike orders.
Pair with strike_cancel_order to cancel something the LLM finds.
strike_get_open_positions
Returns every currently open position — symbol, side, size, entry, mark, unrealized PnL.
Arguments: none
Example prompt:
Show me my open Strike positions and the unrealized PnL on each.
Why no filter args?
Open orders / open positions are tiny lists in practice — Strike returns them all and the LLM filters in chat. For history, use strike_get_order_history, strike_get_fill_history, and strike_get_closed_positions, which all support symbol/time/limit filters.
