We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/alpacahq/alpaca-trade-api-js#get-order-by-client-id
getOrderByClientOrderId(string) => Promise<Order>
should be
getOrderByClientId(string) => Promise<Order>
The text was updated successfully, but these errors were encountered:
Also the replaceOrder doc doesn't mention the need to pass a new order
replaceOrder(uuid) => Promise<Order>
replaceOrder(uuid,{ symbol: string, // any valid ticker symbol qty: number, side: 'buy' | 'sell', type: 'market' | 'limit' | 'stop' | 'stop_limit' | 'trailing_stop', time_in_force: 'day' | 'gtc' | 'opg' | 'ioc', limit_price: number, // optional, stop_price: number, // optional, client_order_id: string, // optional, extended_hours: boolean, // optional, order_class: string, // optional, take_profit: object, // optional, stop_loss: object, // optional, trail_price: string, // optional, trail_percent: string // optional, }) => Promise<Order>
Sorry, something went wrong.
docs still wrong...
No branches or pull requests
https://github.com/alpacahq/alpaca-trade-api-js#get-order-by-client-id
should be
The text was updated successfully, but these errors were encountered: