mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
1.4 KiB
1.4 KiB
Home > bitburner > TIX > getOrganization
TIX.getOrganization() method
Returns the organization associated with a stock symbol.
Signature:
getOrganization(sym: string): string;
Parameters
Parameter | Type | Description |
---|---|---|
sym | string | Stock symbol. |
Returns:
string
The organization assicated with the stock symbol.
Remarks
RAM cost: 2 GB
The organization associated with the corresponding stock symbol. This function requires that you have the following:
-
WSE Account
-
TIX API Access
Example 1
// NS1
stock.getOrganization("FSIG");
// Choose the first stock symbol from the array of stock symbols. Get the
// organization associated with the corresponding stock symbol
var sym = stock.getSymbols()[0];
tprint("Stock symbol: " + sym);
tprint("Stock organization: " + stock.getOrganization(sym));
Example 2
// NS2
ns.stock.getOrganization("FSIG");
// Choose the first stock symbol from the array of stock symbols. Get the
// organization associated with the corresponding stock symbol.
const sym = ns.stock.getSymbols()[0];
ns.tprint("Stock symbol: " + sym);
ns.tprint("Stock organization: " + ns.stock.getOrganization(sym));