bitburner-src/src/StockMarket/OrderProcessing.tsx

176 lines
5.9 KiB
TypeScript
Raw Normal View History

/**
* Helper functions for determine whether Limit and Stop orders should
* be executed (and executing them)
*/
2021-09-05 01:09:30 +02:00
import { buyStock, sellStock, shortStock, sellShort } from "./BuyingAndSelling";
import { IOrderBook } from "./IOrderBook";
import { IStockMarket } from "./IStockMarket";
import { Order } from "./Order";
import { Stock } from "./Stock";
import { OrderTypes } from "./data/OrderTypes";
import { PositionTypes } from "./data/PositionTypes";
import { IMap } from "../types";
import { numeralWrapper } from "../ui/numeralFormat";
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";
export interface IProcessOrderRefs {
2021-09-05 01:09:30 +02:00
stockMarket: IStockMarket;
symbolToStockMap: IMap<Stock>;
}
/**
* Search for all orders of a specific type and execute them if appropriate
* @param {Stock} stock - Stock for which orders should be processed
* @param {OrderTypes} orderType - Type of order to check (Limit/Stop buy/sell)
* @param {PositionTypes} posType - Long or short
* @param {IProcessOrderRefs} refs - References to objects/functions that are required for this function
*/
2021-09-05 01:09:30 +02:00
export function processOrders(
stock: Stock,
orderType: OrderTypes,
posType: PositionTypes,
refs: IProcessOrderRefs,
): void {
const orderBook = refs.stockMarket["Orders"];
if (orderBook == null) {
const orders: IOrderBook = {};
for (const name in refs.stockMarket) {
const stock = refs.stockMarket[name];
if (!(stock instanceof Stock)) {
continue;
}
orders[stock.symbol] = [];
}
2021-09-05 01:09:30 +02:00
refs.stockMarket["Orders"] = orders;
return; // Newly created, so no orders to process
}
let stockOrders = orderBook[stock.symbol];
if (stockOrders == null || !(stockOrders.constructor === Array)) {
2021-09-09 05:47:34 +02:00
console.error(`Invalid Order book for ${stock.symbol} in processOrders(): ${stockOrders}`);
2021-09-05 01:09:30 +02:00
stockOrders = [];
return;
}
2021-09-05 01:09:30 +02:00
for (const order of stockOrders) {
if (order.type === orderType && order.pos === posType) {
switch (order.type) {
case OrderTypes.LimitBuy:
if (order.pos === PositionTypes.Long && stock.price <= order.price) {
executeOrder(/*66*/ order, refs);
2021-09-09 05:47:34 +02:00
} else if (order.pos === PositionTypes.Short && stock.price >= order.price) {
2021-09-05 01:09:30 +02:00
executeOrder(/*66*/ order, refs);
}
break;
case OrderTypes.LimitSell:
if (order.pos === PositionTypes.Long && stock.price >= order.price) {
executeOrder(/*66*/ order, refs);
2021-09-09 05:47:34 +02:00
} else if (order.pos === PositionTypes.Short && stock.price <= order.price) {
2021-09-05 01:09:30 +02:00
executeOrder(/*66*/ order, refs);
}
break;
case OrderTypes.StopBuy:
if (order.pos === PositionTypes.Long && stock.price >= order.price) {
executeOrder(/*66*/ order, refs);
2021-09-09 05:47:34 +02:00
} else if (order.pos === PositionTypes.Short && stock.price <= order.price) {
2021-09-05 01:09:30 +02:00
executeOrder(/*66*/ order, refs);
}
break;
case OrderTypes.StopSell:
if (order.pos === PositionTypes.Long && stock.price <= order.price) {
executeOrder(/*66*/ order, refs);
2021-09-09 05:47:34 +02:00
} else if (order.pos === PositionTypes.Short && stock.price >= order.price) {
2021-09-05 01:09:30 +02:00
executeOrder(/*66*/ order, refs);
}
break;
default:
console.warn(`Invalid order type: ${order.type}`);
return;
}
}
2021-09-05 01:09:30 +02:00
}
}
/**
* Execute a Stop or Limit Order.
* @param {Order} order - Order being executed
* @param {IProcessOrderRefs} refs - References to objects/functions that are required for this function
*/
2021-05-01 09:17:31 +02:00
function executeOrder(order: Order, refs: IProcessOrderRefs): void {
2021-09-05 01:09:30 +02:00
const stock = refs.symbolToStockMap[order.stockSymbol];
if (!(stock instanceof Stock)) {
console.error(`Could not find stock for this order: ${order.stockSymbol}`);
return;
}
const stockMarket = refs.stockMarket;
const orderBook = stockMarket["Orders"];
const stockOrders = orderBook[stock.symbol];
2021-09-05 01:09:30 +02:00
// When orders are executed, the buying and selling functions shouldn't
// emit popup dialog boxes. This options object configures the functions for that
const opts = {
suppressDialog: true,
};
2021-09-05 01:09:30 +02:00
let res = true;
let isBuy = false;
switch (order.type) {
case OrderTypes.LimitBuy:
case OrderTypes.StopBuy:
isBuy = true;
if (order.pos === PositionTypes.Long) {
res = buyStock(stock, order.shares, null, opts) && res;
} else if (order.pos === PositionTypes.Short) {
res = shortStock(stock, order.shares, null, opts) && res;
}
break;
case OrderTypes.LimitSell:
case OrderTypes.StopSell:
if (order.pos === PositionTypes.Long) {
res = sellStock(stock, order.shares, null, opts) && res;
} else if (order.pos === PositionTypes.Short) {
res = sellShort(stock, order.shares, null, opts) && res;
}
break;
default:
console.warn(`Invalid order type: ${order.type}`);
return;
}
2021-09-05 01:09:30 +02:00
// Position type, for logging/message purposes
const pos = order.pos === PositionTypes.Long ? "Long" : "Short";
2021-09-05 01:09:30 +02:00
if (res) {
for (let i = 0; i < stockOrders.length; ++i) {
if (order == stockOrders[i]) {
stockOrders.splice(i, 1);
dialogBoxCreate(
<>
2021-09-09 05:47:34 +02:00
{order.type} for {stock.symbol} @ <Money money={order.price} /> ({pos}) was filled (
2021-09-05 01:09:30 +02:00
{numeralWrapper.formatShares(Math.round(order.shares))} shares)
</>,
);
return;
}
}
2021-09-05 01:09:30 +02:00
console.error("Could not find the following Order in Order Book: ");
console.error(order);
} else {
if (isBuy) {
dialogBoxCreate(
<>
2021-09-09 05:47:34 +02:00
Failed to execute {order.type} for {stock.symbol} @ <Money money={order.price} /> ({pos}). This is most likely
because you do not have enough money or the order would exceed the stock's maximum number of shares
2021-09-05 01:09:30 +02:00
</>,
);
}
2021-09-05 01:09:30 +02:00
}
}