mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
18 lines
556 B
ReStructuredText
18 lines
556 B
ReStructuredText
getStockPrice() Netscript Function
|
|
==================================
|
|
|
|
.. js:function:: getStockPrice(sym)
|
|
|
|
:param string sym: Stock symbol
|
|
:RAM cost: 2 GB
|
|
|
|
Given a stock's symbol, returns the price of that stock (the symbol is a sequence
|
|
of two to four capital letters, **not** the name of the company to which that stock belongs).
|
|
|
|
.. note:: The stock's price is the average of its bid and ask price.
|
|
See :ref:`gameplay_stock_market_spread` for details on what this means.
|
|
|
|
Example::
|
|
|
|
getStockPrice("FSIG");
|