bitburner-src/src/StockMarket/BuyingAndSelling.tsx

394 lines
12 KiB
TypeScript
Raw Normal View History

/**
* Functions for buying/selling stocks. There are four functions total, two for
* long positions and two for short positions.
*/
import { Stock } from "./Stock";
import {
2021-09-05 01:09:30 +02:00
getBuyTransactionCost,
getSellTransactionGain,
processTransactionForecastMovement,
} from "./StockMarketHelpers";
import { PositionType } from "@enums";
import { StockMarketConstants } from "./data/Constants";
import { Player } from "@player";
import { formatMoney, formatShares } from "../ui/formatNumber";
import { Money } from "../ui/React/Money";
2021-09-25 20:42:57 +02:00
import { dialogBoxCreate } from "../ui/React/DialogBox";
import * as React from "react";
import { NetscriptContext } from "../Netscript/APIWrapper";
import { helpers } from "../Netscript/NetscriptHelpers";
/** Each function takes an optional config object as its last argument */
interface IOptions {
2021-09-05 01:09:30 +02:00
rerenderFn?: () => void;
suppressDialog?: boolean;
}
/**
* Attempt to buy a stock in the long position
* @param {Stock} stock - Stock to buy
* @param {number} shares - Number of shares to buy
* @param {NetscriptContext} ctx - If this is being called through Netscript
* @param opts - Optional configuration for this function's behavior. See top of file
* @returns {boolean} - true if successful, false otherwise
*/
2021-09-05 01:09:30 +02:00
export function buyStock(
stock: Stock,
shares: number,
ctx: NetscriptContext | null = null,
2021-09-05 01:09:30 +02:00
opts: IOptions = {},
): boolean {
// Validate arguments
shares = Math.round(shares);
if (shares <= 0) {
return false;
}
if (stock == null || isNaN(shares)) {
if (ctx) {
helpers.log(ctx, () => `Invalid arguments: stock='${stock}' shares='${shares}'`);
2021-09-05 01:09:30 +02:00
} else if (opts.suppressDialog !== true) {
2021-09-09 05:47:34 +02:00
dialogBoxCreate("Failed to buy stock. This may be a bug, contact developer");
}
2021-09-05 01:09:30 +02:00
return false;
}
2021-09-05 01:09:30 +02:00
// Does player have enough money?
const totalPrice = getBuyTransactionCost(stock, shares, PositionType.Long);
2021-09-05 01:09:30 +02:00
if (totalPrice == null) {
return false;
}
2021-11-12 02:42:19 +01:00
if (Player.money < totalPrice) {
if (ctx) {
helpers.log(
ctx,
() => `You do not have enough money to purchase this position. You need ${formatMoney(totalPrice)}.`,
2021-09-05 01:09:30 +02:00
);
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
<>
2021-09-09 05:47:34 +02:00
You do not have enough money to purchase this. You need <Money money={totalPrice} />
2021-09-05 01:09:30 +02:00
</>,
);
}
2021-09-05 01:09:30 +02:00
return false;
}
2021-09-05 01:09:30 +02:00
// Would this purchase exceed the maximum number of shares?
if (shares + stock.playerShares + stock.playerShortShares > stock.maxShares) {
if (ctx) {
helpers.log(
ctx,
() =>
`Purchasing '${shares + stock.playerShares + stock.playerShortShares}' shares would exceed ${
stock.symbol
}'s maximum (${stock.maxShares}) number of shares`,
2021-09-05 01:09:30 +02:00
);
} else if (opts.suppressDialog !== true) {
2021-09-05 01:09:30 +02:00
dialogBoxCreate(
`You cannot purchase this many shares. ${stock.symbol} has a maximum of ${formatShares(
2021-09-05 01:09:30 +02:00
stock.maxShares,
)} shares.`,
);
}
2021-09-05 01:09:30 +02:00
return false;
}
const origTotal = stock.playerShares * stock.playerAvgPx;
2021-10-27 20:18:33 +02:00
Player.loseMoney(totalPrice, "stock");
const newTotal = origTotal + totalPrice - StockMarketConstants.StockMarketCommission;
2021-09-05 01:09:30 +02:00
stock.playerShares = Math.round(stock.playerShares + shares);
stock.playerAvgPx = newTotal / stock.playerShares;
processTransactionForecastMovement(stock, shares);
if (opts.rerenderFn != null && typeof opts.rerenderFn === "function") {
opts.rerenderFn();
}
if (ctx) {
const resultTxt = `Bought ${formatShares(shares)} shares of ${stock.symbol} for ${formatMoney(
totalPrice,
)}. Paid ${formatMoney(StockMarketConstants.StockMarketCommission)} in commission fees.`;
helpers.log(ctx, () => resultTxt);
2021-09-05 01:09:30 +02:00
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
<>
Bought {formatShares(shares)} shares of {stock.symbol} for <Money money={totalPrice} />. Paid{" "}
<Money money={StockMarketConstants.StockMarketCommission} /> in commission fees.
2021-09-05 01:09:30 +02:00
</>,
);
}
return true;
}
/**
* Attempt to sell a stock in the long position
* @param {Stock} stock - Stock to sell
* @param {number} shares - Number of shares to sell
* @param {NetscriptContext} ctx - If this is being called through Netscript
* @param opts - Optional configuration for this function's behavior. See top of file
* returns {boolean} - true if successfully sells given number of shares OR MAX owned, false otherwise
*/
2021-09-05 01:09:30 +02:00
export function sellStock(
stock: Stock,
shares: number,
ctx: NetscriptContext | null = null,
2021-09-05 01:09:30 +02:00
opts: IOptions = {},
): boolean {
// Sanitize/Validate arguments
if (stock == null || shares < 0 || isNaN(shares)) {
if (ctx) {
helpers.log(ctx, () => `Invalid arguments: stock='${stock}' shares='${shares}'`);
2021-09-05 01:09:30 +02:00
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
"Failed to sell stock. This is probably due to an invalid quantity. Otherwise, this may be a bug, contact developer",
);
}
2021-09-05 01:09:30 +02:00
return false;
}
shares = Math.round(shares);
if (shares > stock.playerShares) {
shares = stock.playerShares;
}
if (shares === 0) {
return false;
}
const gains = getSellTransactionGain(stock, shares, PositionType.Long);
2021-09-05 01:09:30 +02:00
if (gains == null) {
return false;
}
let netProfit = gains - stock.playerAvgPx * shares;
if (isNaN(netProfit)) {
netProfit = 0;
}
2021-10-27 20:18:33 +02:00
Player.gainMoney(gains, "stock");
if (ctx) {
ctx.workerScript.scriptRef.onlineMoneyMade += netProfit;
2021-09-05 01:09:30 +02:00
Player.scriptProdSinceLastAug += netProfit;
}
stock.playerShares = Math.round(stock.playerShares - shares);
if (stock.playerShares === 0) {
stock.playerAvgPx = 0;
}
processTransactionForecastMovement(stock, shares);
if (opts.rerenderFn != null && typeof opts.rerenderFn === "function") {
opts.rerenderFn();
}
if (ctx) {
2021-09-05 01:09:30 +02:00
const resultTxt =
`Sold ${formatShares(shares)} shares of ${stock.symbol}. ` +
`After commissions, you gained a total of ${formatMoney(gains)}.`;
helpers.log(ctx, () => resultTxt);
2021-09-05 01:09:30 +02:00
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
<>
Sold {formatShares(shares)} shares of {stock.symbol}. After commissions, you gained a total of{" "}
2021-09-09 05:47:34 +02:00
<Money money={gains} />.
2021-09-05 01:09:30 +02:00
</>,
);
}
return true;
}
/**
* Attempt to buy a stock in the short position
* @param {Stock} stock - Stock to sell
* @param {number} shares - Number of shares to short
* @param {NetscriptContext} ctx - If this is being called through Netscript
* @param opts - Optional configuration for this function's behavior. See top of file
* @returns {boolean} - true if successful, false otherwise
*/
2021-09-05 01:09:30 +02:00
export function shortStock(
stock: Stock,
shares: number,
ctx: NetscriptContext | null = null,
2021-09-05 01:09:30 +02:00
opts: IOptions = {},
): boolean {
// Validate arguments
shares = Math.round(shares);
if (shares <= 0) {
return false;
}
if (stock == null || isNaN(shares)) {
if (ctx) {
helpers.log(ctx, () => `Invalid arguments: stock='${stock}' shares='${shares}'`);
2021-09-05 01:09:30 +02:00
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
"Failed to initiate a short position in a stock. This is probably " +
"due to an invalid quantity. Otherwise, this may be a bug, so contact developer",
);
}
2021-09-05 01:09:30 +02:00
return false;
}
// Does the player have enough money?
const totalPrice = getBuyTransactionCost(stock, shares, PositionType.Short);
2021-09-05 01:09:30 +02:00
if (totalPrice == null) {
return false;
}
2021-11-12 02:42:19 +01:00
if (Player.money < totalPrice) {
if (ctx) {
helpers.log(
ctx,
() => "You do not have enough " + "money to purchase this short position. You need " + formatMoney(totalPrice),
2021-09-05 01:09:30 +02:00
);
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
<>
2021-09-09 05:47:34 +02:00
You do not have enough money to purchase this short position. You need <Money money={totalPrice} />
2021-09-05 01:09:30 +02:00
</>,
);
}
2021-09-05 01:09:30 +02:00
return false;
}
2021-09-05 01:09:30 +02:00
// Would this purchase exceed the maximum number of shares?
if (shares + stock.playerShares + stock.playerShortShares > stock.maxShares) {
if (ctx) {
helpers.log(
ctx,
() =>
`This '${shares + stock.playerShares + stock.playerShortShares}' short shares would exceed ${
stock.symbol
}'s maximum (${stock.maxShares}) number of shares.`,
2021-09-05 01:09:30 +02:00
);
} else if (opts.suppressDialog !== true) {
dialogBoxCreate(
`You cannot purchase this many shares. ${stock.symbol} has a maximum of ${stock.maxShares} shares.`,
);
}
2021-09-05 01:09:30 +02:00
return false;
}
const origTotal = stock.playerShortShares * stock.playerAvgShortPx;
2021-10-27 20:18:33 +02:00
Player.loseMoney(totalPrice, "stock");
const newTotal = origTotal + totalPrice - StockMarketConstants.StockMarketCommission;
2021-09-05 01:09:30 +02:00
stock.playerShortShares = Math.round(stock.playerShortShares + shares);
stock.playerAvgShortPx = newTotal / stock.playerShortShares;
processTransactionForecastMovement(stock, shares);
if (opts.rerenderFn != null && typeof opts.rerenderFn === "function") {
opts.rerenderFn();
}
if (ctx) {
2021-09-05 01:09:30 +02:00
const resultTxt =
`Bought a short position of ${formatShares(shares)} shares of ${stock.symbol} ` +
`for ${formatMoney(totalPrice)}. Paid ${formatMoney(StockMarketConstants.StockMarketCommission)} ` +
2021-09-05 01:09:30 +02:00
`in commission fees.`;
helpers.log(ctx, () => resultTxt);
2021-09-05 01:09:30 +02:00
} else if (!opts.suppressDialog) {
dialogBoxCreate(
<>
Bought a short position of {formatShares(shares)} shares of {stock.symbol} for <Money money={totalPrice} />.
Paid <Money money={StockMarketConstants.StockMarketCommission} /> in commission fees.
2021-09-05 01:09:30 +02:00
</>,
);
}
return true;
}
/**
* Attempt to sell a stock in the short position
* @param {Stock} stock - Stock to sell
* @param {number} shares - Number of shares to sell
* @param {NetscriptContext} ctx - If this is being called through Netscript
* @param opts - Optional configuration for this function's behavior. See top of file
* @returns {boolean} true if successfully sells given amount OR max owned, false otherwise
*/
2021-09-05 01:09:30 +02:00
export function sellShort(
stock: Stock,
shares: number,
ctx: NetscriptContext | null = null,
2021-09-05 01:09:30 +02:00
opts: IOptions = {},
): boolean {
if (stock == null || isNaN(shares) || shares < 0) {
if (ctx) {
helpers.log(ctx, () => `Invalid arguments: stock='${stock}' shares='${shares}'`);
2021-09-05 01:09:30 +02:00
} else if (!opts.suppressDialog) {
dialogBoxCreate(
"Failed to sell a short position in a stock. This is probably " +
"due to an invalid quantity. Otherwise, this may be a bug, so contact developer",
);
}
2021-09-05 01:09:30 +02:00
return false;
}
shares = Math.round(shares);
if (shares > stock.playerShortShares) {
shares = stock.playerShortShares;
}
if (shares === 0) {
return false;
}
const origCost = shares * stock.playerAvgShortPx;
const totalGain = getSellTransactionGain(stock, shares, PositionType.Short);
2021-09-05 01:09:30 +02:00
if (totalGain == null || isNaN(totalGain) || origCost == null) {
if (ctx) {
helpers.log(
ctx,
() => `Failed to sell short position in a stock. This is probably either due to invalid arguments, or a bug`,
2021-09-05 01:09:30 +02:00
);
} else if (!opts.suppressDialog) {
2021-09-05 01:09:30 +02:00
dialogBoxCreate(
`Failed to sell short position in a stock. This is probably either due to invalid arguments, or a bug`,
);
}
2021-09-05 01:09:30 +02:00
return false;
}
let profit = totalGain - origCost;
if (isNaN(profit)) {
profit = 0;
}
2021-10-27 20:18:33 +02:00
Player.gainMoney(totalGain, "stock");
if (ctx) {
ctx.workerScript.scriptRef.onlineMoneyMade += profit;
2021-09-05 01:09:30 +02:00
Player.scriptProdSinceLastAug += profit;
}
stock.playerShortShares = Math.round(stock.playerShortShares - shares);
if (stock.playerShortShares === 0) {
stock.playerAvgShortPx = 0;
}
processTransactionForecastMovement(stock, shares);
if (opts.rerenderFn != null && typeof opts.rerenderFn === "function") {
opts.rerenderFn();
}
if (ctx) {
2021-09-05 01:09:30 +02:00
const resultTxt =
`Sold your short position of ${formatShares(shares)} shares of ${stock.symbol}. ` +
`After commissions, you gained a total of ${formatMoney(totalGain)}`;
helpers.log(ctx, () => resultTxt);
2021-09-05 01:09:30 +02:00
} else if (!opts.suppressDialog) {
dialogBoxCreate(
<>
Sold your short position of {formatShares(shares)} shares of {stock.symbol}. After commissions, you gained a
total of <Money money={totalGain} />
2021-09-05 01:09:30 +02:00
</>,
);
}
return true;
}