mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
47 lines
697 B
Markdown
47 lines
697 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
||
[Home](./index.md) > [bitburner](./bitburner.md) > [TIX](./bitburner.tix.md) > [getPrice](./bitburner.tix.getprice.md)
|
||
|
||
## TIX.getPrice() method
|
||
|
||
Returns the price of a stock
|
||
|
||
<b>Signature:</b>
|
||
|
||
```typescript
|
||
getPrice(sym: string): number;
|
||
```
|
||
|
||
## Parameters
|
||
|
||
| Parameter | Type | Description |
|
||
| --- | --- | --- |
|
||
| sym | string | Stock symbol. |
|
||
|
||
<b>Returns:</b>
|
||
|
||
number
|
||
|
||
The price of a stock.
|
||
|
||
## Remarks
|
||
|
||
RAM cost: 2 GB The stock’s price is the average of its bid and ask price.
|
||
|
||
## Example 1
|
||
|
||
|
||
```ts
|
||
// NS1
|
||
stock.getPrice("FISG");
|
||
```
|
||
|
||
## Example 2
|
||
|
||
|
||
```ts
|
||
// NS2
|
||
ns.stock.getPrice("FISG");
|
||
```
|
||
|