@@ -11,43 +11,39 @@ class Profile(Event):
1111 traded security on the market at any given moment of time.
1212 """
1313
14- #: symbol of this event
15- eventSymbol : str
16- #: time of this event
17- eventTime : int
1814 #: description of the security instrument
1915 description : str
2016 #: short sale restriction of the security instrument
2117 #: possible values are ACTIVE | INACTIVE | UNDEFINED
22- shortSaleRestriction : str
18+ short_sale_restriction : str
2319 #: trading status of the security instrument
2420 #: possible values are ACTIVE | HALTED | UNDEFINED
25- tradingStatus : str
21+ trading_status : str
2622 #: starting time of the trading halt interval
27- haltStartTime : int
23+ halt_start_time : int
2824 #: ending time of the trading halt interval
29- haltEndTime : int
25+ halt_end_time : int
3026 #: identifier of the ex-dividend date
31- exDividendDayId : int
27+ ex_dividend_day_id : int
3228 #: description of the reason that trading was halted
33- statusReason : Optional [str ] = None
29+ status_reason : Optional [str ] = None
3430 #: maximal (high) price in last 52 weeks
35- high52WeekPrice : Optional [Decimal ] = None
31+ high_52_week_price : Optional [Decimal ] = None
3632 #: minimal (low) price in last 52 weeks
37- low52WeekPrice : Optional [Decimal ] = None
33+ low_52_week_price : Optional [Decimal ] = None
3834 #: the correlation coefficient of the instrument to the S&P500 index
3935 beta : Optional [Decimal ] = None
4036 #: shares outstanding
4137 shares : Optional [Decimal ] = None
4238 #: maximal (high) allowed price
43- highLimitPrice : Optional [Decimal ] = None
39+ high_limit_price : Optional [Decimal ] = None
4440 #: minimal (low) allowed price
45- lowLimitPrice : Optional [Decimal ] = None
41+ low_limit_price : Optional [Decimal ] = None
4642 #: earnings per share
47- earningsPerShare : Optional [Decimal ] = None
43+ earnings_per_share : Optional [Decimal ] = None
4844 #: the amount of the last paid dividend
49- exDividendAmount : Optional [Decimal ] = None
45+ ex_dividend_amount : Optional [Decimal ] = None
5046 #: frequency of cash dividends payments per year (calculated)
51- dividendFrequency : Optional [Decimal ] = None
47+ dividend_frequency : Optional [Decimal ] = None
5248 #: the number of shares that are available to the public for trade
53- freeFloat : Optional [Decimal ] = None
49+ free_float : Optional [Decimal ] = None
0 commit comments