-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathenums.py
37 lines (28 loc) · 779 Bytes
/
enums.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from __future__ import annotations
from enum import Enum
class OrderType(str, Enum):
"""All the order-types available in the drop-down menu"""
market = 'MKT'
limit = 'LMT'
stop = 'Stop-MKT'
stop_limit = 'Stop-LMT'
market_on_close = 'MKT-Close'
limit_on_close = 'LMT-Close'
range = 'RANGE'
class TIF(str, Enum):
"""Time-in-force values"""
DAY = 'DAY'
GTC = 'GTC'
GTX = 'GTX'
class Order(str, Enum):
"""Order types"""
BUY = 'buy'
SELL = 'sell'
SHORT = 'short'
COVER = 'cover'
class PortfolioTab(str, Enum):
"""The ID for each """
open_positions = 'portfolio-tab-op-1'
closed_positions = 'portfolio-tab-cp-1'
active_orders = 'portfolio-tab-ao-1'
inactive_orders = 'portfolio-tab-io-1'