bitburner-src/markdown/bitburner.tix.getprice.md
omuretsu 06a985bdf8 Revert "Remove markdown from git tracking (#139)"
This reverts commit bbb6e3f309935aebac74ddb1fbeec12dfb7540b1.
2022-10-21 11:16:00 -04:00

1.2 KiB
Raw Blame History

Home > bitburner > TIX > getPrice

TIX.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:

  1. WSE Account

  2. TIX API Access

Example 1

// NS1
stock.getPrice("FSIG");

// Choose the first stock symbol from the array of stock symbols.  Get the price
// of the corresponding stock.
var sym = stock.getSymbols()[0];
tprint("Stock symbol: " + sym);
tprint("Stock price: " + stock.getPrice(sym));

Example 2

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