mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
3.2 KiB
3.2 KiB
TIX interface
Stock market API
Signature:
export interface TIX
Methods
Method | Description |
---|---|
buyShort(sym, shares) | Short stocks. |
buyStock(sym, shares) | Buy stocks. |
cancelOrder(sym, shares, price, type, pos) | Cancel order for stocks. |
getAskPrice(sym) | Returns the ask price of that stock. |
getBidPrice(sym) | Returns the bid price of that stock. |
getBonusTime() | Get Stock Market bonus time. |
getConstants() | Get game constants for the stock market mechanic. |
getForecast(sym) | Returns the probability that the specified stock’s price will increase (as opposed to decrease) during the next tick. |
getMaxShares(sym) | Returns the maximum number of shares of a stock. |
getOrders() | Returns your order book for the stock market. |
getOrganization(sym) | Returns the organization associated with a stock symbol. |
getPosition(sym) | Returns the player’s position in a stock. |
getPrice(sym) | Returns the price of a stock. |
getPurchaseCost(sym, shares, posType) | Calculates cost of buying stocks. |
getSaleGain(sym, shares, posType) | Calculate profit of selling stocks. |
getSymbols() | Returns an array of the symbols of the tradable stocks |
getVolatility(sym) | Returns the volatility of the specified stock. |
has4SData() | Returns true if the player has access to the 4S Data |
has4SDataTIXAPI() | Returns true if the player has access to the 4SData TIX API |
hasTIXAPIAccess() | Returns true if the player has access to the TIX API |
hasWSEAccount() | Returns true if the player has access to a WSE Account |
nextUpdate() | Sleep until the next Stock Market price update has happened. |
placeOrder(sym, shares, price, type, pos) | Place order for stocks. |
purchase4SMarketData() | Purchase 4S Market Data Access. |
purchase4SMarketDataTixApi() | Purchase 4S Market Data TIX API Access. |
purchaseTixApi() | Purchase TIX API Access |
purchaseWseAccount() | Purchase WSE Account. |
sellShort(sym, shares) | Sell short stock. |
sellStock(sym, shares) | Sell stocks. |