bitburner-src/markdown/bitburner.tix.getpurchasecost.md

33 lines
955 B
Markdown
Raw Normal View History

2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [TIX](./bitburner.tix.md) &gt; [getPurchaseCost](./bitburner.tix.getpurchasecost.md)
## TIX.getPurchaseCost() method
2021-10-30 22:03:34 +02:00
Calculates cost of buying stocks.
2021-10-30 18:34:14 +02:00
<b>Signature:</b>
```typescript
2021-11-03 05:27:21 +01:00
getPurchaseCost(sym: string, shares: number, posType: string): number;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-11-03 05:27:21 +01:00
| sym | string | Stock symbol. |
2021-10-30 18:34:14 +02:00
| shares | number | Number of shares to purchase. |
2021-11-03 05:27:21 +01:00
| posType | string | Specifies whether the order is a “Long” or “Short” position. |
2021-10-30 18:34:14 +02:00
<b>Returns:</b>
number
Cost to buy a given number of shares of a stock.
## Remarks
2021-10-30 22:03:34 +02:00
RAM cost: 2 GB Calculates and returns how much it would cost to buy a given number of shares of a stock. This takes into account spread, large transactions influencing the price of the stock and commission fees.
2021-10-30 18:34:14 +02:00