ENUMS: Initial Enum Helper rework + Reorganization (#596)

This commit is contained in:
Snarling
2023-06-12 00:34:20 -04:00
committed by GitHub
parent 6ed8ea9796
commit 6732549196
224 changed files with 2126 additions and 2171 deletions

View File

@@ -342,13 +342,13 @@ interface AugmentPair {
}
/** @public */
declare enum PositionTypes {
declare enum PositionType {
Long = "L",
Short = "S",
}
/** @public */
declare enum OrderTypes {
declare enum OrderType {
LimitBuy = "Limit Buy Order",
LimitSell = "Limit Sell Order",
StopBuy = "Stop Buy Order",
@@ -365,9 +365,9 @@ interface StockOrderObject {
/** Price per share */
price: number;
/** Order type */
type: OrderTypes;
type: OrderType;
/** Order position */
position: PositionTypes;
position: PositionType;
}
/**