[Home](./index.md) > [bitburner](./bitburner.md) > [Stock](./bitburner.stock.md) > [placeOrder](./bitburner.stock.placeorder.md) ## Stock.placeOrder() method Place order for stocks. **Signature:** ```typescript placeOrder(sym: string, shares: number, price: number, orderType: OrderType, positionType: PositionType): boolean; ``` ## Parameters
| Parameter | Type | Description |
|---|---|---|
| sym | string | Stock symbol. |
| shares | number | Number of shares for order. Must be positive. Will be rounded to the nearest integer. |
| price | number | Execution price for the order. |
| orderType | [OrderType](./bitburner.ordertype.md) | Type of order. |
| positionType | [PositionType](./bitburner.positiontype.md) | Specifies whether the order is a Long ("L") or Short ("S") position. |