[Home](./index.md) > [bitburner](./bitburner.md) > [TIX](./bitburner.tix.md) > [getPrice](./bitburner.tix.getprice.md) ## TIX.getPrice() method Returns the price of a stock Signature: ```typescript 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 stock’s price is the average of its bid and ask price. ## Example ```ts getPrice("FISG"); ```