bitburner-src/markdown/bitburner.tix.getprice.md
Olivier Gagnon 2b79871c02 doc
2021-11-03 00:27:21 -04:00

38 lines
622 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [TIX](./bitburner.tix.md) &gt; [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 stocks price is the average of its bid and ask price.
## Example
```ts
getPrice("FISG");
```