v4
Added:
cancel(account, ticker, id)
Sends an alert to cancel a specific limit order.
Parameters:
account (string): The account ID.
ticker (string)
id (string): The ID of the limit order to cancel.
cancel_all(account, ticker)
Sends an alert to cancel all orders for a symbol.
Parameters:
account (string): The account ID.
ticker (string)
Updated:
buy(account, ticker, amount, unit, leverage)
Sends a trading alert to execute a market buy order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to buy (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
sell(account, ticker, amount, unit, leverage)
Sends a trading alert to execute a market sell order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to sell (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
set_position(account, ticker, amount, unit, leverage)
Sends a trading alert to set a position.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to set the position to (can be in USD, units, or percentage).
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
limit_buy(account, ticker, amount, price, unit, leverage, id)
Sends a trading alert to place a limit buy order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to buy (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
limit_sell(account, ticker, amount, price, unit, leverage, id)
Sends a trading alert to place a limit sell order.
Parameters:
account (string): The account ID.
ticker (string)
amount (float): The amount to sell (can be in USD, units, or percentage).
price (float): The limit price.
unit (string): The unit of the amount (optional, defaults to "units").
leverage (float): The leverage to use (optional, defaults to 1x).
id (string): An optional custom ID for the limit order.
close_percent(account, ticker, pct, price)
Sends an alert to close a position on Phemex.
Parameters:
account (string): The account ID.
ticker (string)
pct (float): The percentage of the position to close (optional, defaults to 100%).
price (float)