Files
bitburner-src/markdown/bitburner.stock.getprice.md
2025-10-14 11:51:54 -07:00

1.1 KiB
Raw Permalink Blame History

Home > bitburner > Stock > getPrice

Stock.getPrice() method

Returns the price of a stock.

Signature:

getPrice(sym: string): number;

Parameters

Parameter

Type

Description

sym

string

Stock symbol.

Returns:

number

The price of a stock.

Remarks

RAM cost: 2 GB

The stocks price is the average of its bid and ask prices. This function requires that you have the following:

  • WSE Account

  • TIX API Access

Example

const fourSigmaStockPrice = ns.stock.getPrice("FSIG");

// 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));