@@ -119,6 +119,7 @@ class ActionType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
119
119
LISTING : _ClassVar [ActionType ]
120
120
DELISTING : _ClassVar [ActionType ]
121
121
EXCHANGE_MOVE : _ClassVar [ActionType ]
122
+ ALIAS_CHANGED : _ClassVar [ActionType ]
122
123
UNKNOWN_BOOK_SIDE : BookSide
123
124
BID : BookSide
124
125
OFFER : BookSide
@@ -199,6 +200,7 @@ UNKNOWN_ACTION: ActionType
199
200
LISTING : ActionType
200
201
DELISTING : ActionType
201
202
EXCHANGE_MOVE : ActionType
203
+ ALIAS_CHANGED : ActionType
202
204
203
205
class OpenfeedMessage (_message .Message ):
204
206
__slots__ = ["sendingTime" , "totalCount" , "syncSequence" , "context" , "channelReset" , "heartBeat" , "adminMessage" , "instrumentDefinition" , "instrumentGroupStatus" , "marketSnapshot" , "marketUpdate" , "marketStatus" , "eodCommoditySummary" , "instrumentAction" ]
@@ -1379,20 +1381,22 @@ class Ohlc(_message.Message):
1379
1381
def __init__ (self , marketId : _Optional [int ] = ..., symbol : _Optional [str ] = ..., open : _Optional [_Union [Open , _Mapping ]] = ..., high : _Optional [_Union [High , _Mapping ]] = ..., low : _Optional [_Union [Low , _Mapping ]] = ..., close : _Optional [_Union [Close , _Mapping ]] = ..., volume : _Optional [int ] = ..., priceVolume : _Optional [float ] = ..., numberTrades : _Optional [int ] = ..., tradeDate : _Optional [int ] = ..., transactionTime : _Optional [int ] = ..., tradeIds : _Optional [_Iterable [str ]] = ..., openStartTime : _Optional [int ] = ..., closeEndTime : _Optional [int ] = ...) -> None : ...
1380
1382
1381
1383
class InstrumentAction (_message .Message ):
1382
- __slots__ = ["transactionTime" , "tradeDate" , "action" , "message" , "instrument" , "newInstrument" ]
1384
+ __slots__ = ["transactionTime" , "tradeDate" , "action" , "message" , "oldAlias" , " instrument" , "newInstrument" ]
1383
1385
TRANSACTIONTIME_FIELD_NUMBER : _ClassVar [int ]
1384
1386
TRADEDATE_FIELD_NUMBER : _ClassVar [int ]
1385
1387
ACTION_FIELD_NUMBER : _ClassVar [int ]
1386
1388
MESSAGE_FIELD_NUMBER : _ClassVar [int ]
1389
+ OLDALIAS_FIELD_NUMBER : _ClassVar [int ]
1387
1390
INSTRUMENT_FIELD_NUMBER : _ClassVar [int ]
1388
1391
NEWINSTRUMENT_FIELD_NUMBER : _ClassVar [int ]
1389
1392
transactionTime : int
1390
1393
tradeDate : int
1391
1394
action : ActionType
1392
1395
message : str
1396
+ oldAlias : str
1393
1397
instrument : _openfeed_instrument_pb2 .InstrumentDefinition
1394
1398
newInstrument : _openfeed_instrument_pb2 .InstrumentDefinition
1395
- def __init__ (self , transactionTime : _Optional [int ] = ..., tradeDate : _Optional [int ] = ..., action : _Optional [_Union [ActionType , str ]] = ..., message : _Optional [str ] = ..., instrument : _Optional [_Union [_openfeed_instrument_pb2 .InstrumentDefinition , _Mapping ]] = ..., newInstrument : _Optional [_Union [_openfeed_instrument_pb2 .InstrumentDefinition , _Mapping ]] = ...) -> None : ...
1399
+ def __init__ (self , transactionTime : _Optional [int ] = ..., tradeDate : _Optional [int ] = ..., action : _Optional [_Union [ActionType , str ]] = ..., message : _Optional [str ] = ..., oldAlias : _Optional [ str ] = ..., instrument : _Optional [_Union [_openfeed_instrument_pb2 .InstrumentDefinition , _Mapping ]] = ..., newInstrument : _Optional [_Union [_openfeed_instrument_pb2 .InstrumentDefinition , _Mapping ]] = ...) -> None : ...
1396
1400
1397
1401
class RequestForQuote (_message .Message ):
1398
1402
__slots__ = ["quoteRequestId" , "symbol" , "securityId" , "orderQuantity" , "quoteType" , "side" ]
0 commit comments