This commit is contained in:
Snarling
2022-10-03 12:12:16 -04:00
parent ab56d18e1e
commit 50f14b4f58
67 changed files with 307 additions and 599 deletions
+1 -3
View File
@@ -11,8 +11,6 @@ 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";
@@ -23,7 +21,7 @@ import * as React from "react";
export interface IProcessOrderRefs {
stockMarket: IStockMarket;
symbolToStockMap: IMap<Stock>;
symbolToStockMap: Record<string, Stock>;
}
/**