investfly.models.MarketData
def
parseDatetime(date_str: str) -> datetime.datetime:
def
formatDatetime(dt: datetime.datetime) -> str:
class
SecurityType(builtins.str, enum.Enum):
Enum representing Security Type (STOCK, ETF)
Inherited Members
- enum.Enum
- name
- value
- builtins.str
- encode
- replace
- split
- rsplit
- join
- capitalize
- casefold
- title
- center
- count
- expandtabs
- find
- partition
- index
- ljust
- lower
- lstrip
- rfind
- rindex
- rjust
- rstrip
- rpartition
- splitlines
- strip
- swapcase
- translate
- upper
- startswith
- endswith
- removeprefix
- removesuffix
- isascii
- islower
- isupper
- istitle
- isspace
- isdecimal
- isdigit
- isnumeric
- isalpha
- isalnum
- isidentifier
- isprintable
- zfill
- format
- format_map
- maketrans
@dataclass(frozen=True)
class
Security:
Class representing a security instrument that is traded in the market
Security(symbol: str, securityType: SecurityType)
@dataclass
class
Quote:
Class representing Price Quote
Quote( symbol: str, date: datetime.datetime, lastPrice: float, prevClose: float | None = None, todayChange: float | None = None, todayChangePct: float | None = None, dayOpen: float | None = None, dayHigh: float | None = None, dayLow: float | None = None, volume: int | None = None)
def
toIndicatorValue( self, quoteField: investfly.models.MarketDataIds.QuoteField) -> investfly.models.CommonModels.DatedValue:
class
BarInterval(builtins.str, enum.Enum):
Enum to represent BarInterval
ONE_MINUTE =
<BarInterval.ONE_MINUTE: 'ONE_MINUTE'>
FIVE_MINUTE =
<BarInterval.FIVE_MINUTE: 'FIVE_MINUTE'>
FIFTEEN_MINUTE =
<BarInterval.FIFTEEN_MINUTE: 'FIFTEEN_MINUTE'>
THIRTY_MINUTE =
<BarInterval.THIRTY_MINUTE: 'THIRTY_MINUTE'>
SIXTY_MINUTE =
<BarInterval.SIXTY_MINUTE: 'SIXTY_MINUTE'>
ONE_DAY =
<BarInterval.ONE_DAY: 'ONE_DAY'>
Inherited Members
- enum.Enum
- name
- value
- builtins.str
- encode
- replace
- split
- rsplit
- join
- capitalize
- casefold
- title
- center
- count
- expandtabs
- find
- partition
- index
- ljust
- lower
- lstrip
- rfind
- rindex
- rjust
- rstrip
- rpartition
- splitlines
- strip
- swapcase
- translate
- upper
- startswith
- endswith
- removeprefix
- removesuffix
- isascii
- islower
- isupper
- istitle
- isspace
- isdecimal
- isdigit
- isnumeric
- isalpha
- isalnum
- isidentifier
- isprintable
- zfill
- format
- format_map
- maketrans
class
Bar(builtins.dict):
barinterval: BarInterval
Inherited Members
- builtins.dict
- get
- setdefault
- pop
- popitem
- keys
- items
- values
- update
- fromkeys
- clear
- copy
@dataclass
class
StockNews:
class
NoDataException(builtins.Exception):
Common base class for all non-exit exceptions.
Inherited Members
- builtins.BaseException
- with_traceback
- add_note
- args