mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 13:43:49 +01:00
40 lines
751 B
Markdown
40 lines
751 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, given its symbol (NOT the company name). The symbol is a sequence of two to four capital letters.
|
||
|
||
The stock’s price is the average of its bid and ask price
|
||
|
||
<b>Signature:</b>
|
||
|
||
```typescript
|
||
getPrice(sym: StockSymbol): number;
|
||
```
|
||
|
||
## Parameters
|
||
|
||
| Parameter | Type | Description |
|
||
| --- | --- | --- |
|
||
| sym | [StockSymbol](./bitburner.stocksymbol.md) | Stock symbol. |
|
||
|
||
<b>Returns:</b>
|
||
|
||
number
|
||
|
||
The price of a stock.
|
||
|
||
## Remarks
|
||
|
||
2 GB
|
||
|
||
## Example
|
||
|
||
|
||
```js
|
||
getPrice("FISG");
|
||
```
|
||
|