mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
35 lines
1.0 KiB
Markdown
35 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [TIX](./bitburner.tix.md) > [cancelOrder](./bitburner.tix.cancelorder.md)
|
|
|
|
## TIX.cancelOrder() method
|
|
|
|
Cancel order for stocks.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
cancelOrder(sym: string, shares: number, price: number, type: string, pos: string): void;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| sym | string | Stock symbol. |
|
|
| shares | number | Number of shares for order. Must be positive. Will be rounded to nearest integer. |
|
|
| price | number | Execution price for the order. |
|
|
| type | string | Type of order. |
|
|
| pos | string | Specifies whether the order is a “Long” or “Short” position. |
|
|
|
|
**Returns:**
|
|
|
|
void
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 2.5 GB Cancels an outstanding Limit or Stop order on the stock market.
|
|
|
|
The ability to use limit and stop orders is \*\*not\*\* immediately available to the player and must be unlocked later on in the game.
|
|
|