2022-10-21 17:16:00 +02:00
|
|
|
|
<!-- 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.
|
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
|
**Signature:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
|
getPrice(sym: string): number;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
|
| --- | --- | --- |
|
|
|
|
|
| sym | string | Stock symbol. |
|
|
|
|
|
|
2023-02-11 19:18:50 +01:00
|
|
|
|
**Returns:**
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
|
|
number
|
|
|
|
|
|
|
|
|
|
The price of a stock.
|
|
|
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
|
|
RAM cost: 2 GB
|
|
|
|
|
|
|
|
|
|
The stock’s price is the average of its bid and ask prices. This function requires that you have the following:
|
|
|
|
|
|
|
|
|
|
1. WSE Account
|
|
|
|
|
|
|
|
|
|
1. TIX API Access
|
|
|
|
|
|
2022-12-30 02:28:53 +01:00
|
|
|
|
## Example
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
|
|
|
2022-12-30 02:28:53 +01:00
|
|
|
|
```js
|
|
|
|
|
const fourSigmaStockPrice = ns.stock.getPrice("FSIG");
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
|
|
// Choose the first stock symbol from the array of stock symbols. Get the price
|
|
|
|
|
// of the corresponding stock.
|
|
|
|
|
const sym = ns.stock.getSymbols()[0];
|
|
|
|
|
ns.tprint("Stock symbol: " + sym);
|
|
|
|
|
ns.tprint("Stock price: " + ns.stock.getPrice(sym));
|
|
|
|
|
```
|
|
|
|
|
|