NEOE Market Data Feed Client
The NEOE Market Data Feed Client disseminates real-time market data for the Aequitas NEO Exchange. It connects to the Service Locator for authentication and provides order book data, time and sales, and the consolidated best bid offer for the NEO Exchange. The feed is managed using start.sh, stop.sh, and check.sh scripts for service control.
Configuration
The feed is split into multiple channels for disseminating the CBBO, book, and trade data. Each channel can be found in its own subdirectory whose name starts with the neoe prefix, such as neoe_cbbo, neoe_cls and neoe_book for the CBBO, time and sales, and book feed respectively.
The feed is configured via a YAML file (config.yml
) with the following structure and example values:
--- service_locator: # Service Locator connection details address: "127.0.0.1:20000" username: "market_data_feed" password: "securepassword123" # Whether to log raw market data packets enable_logging: false # Path to security definitions (relative to config) symbol_list: "../symbols.yml" # Frequency of market data updates sampling: 100ms # Retransmission settings enable_retransmission: false max_retransmissions: 10000 retransmission_block_size: 20000 # Multicast network configuration host: "233.102.209.247:61023" interface: "192.168.0.100:61023" retransmission_request_address: "142.201.149.44:61030" retransmission_response_address: "142.201.149.44:61031" # Market Participant ID mappings mpid_mappings: - source: 1 name: ANON - source: 2 name: RBCC - source: 3 name: TRIS - source: 4 name: VERS ...
In addition there is a security master list of traded securities typically founds in the symbols.yml
file with the following format:
--- - symbol: AAPL # The ticker symbol assign. name: APPLE CDR (CAD HEDGED) # The name of the security. board_lot: 100 # The security's board lot. - symbol: ABXX name: ABAXX TECHNOLOGIES INC. board_lot: 100 - symbol: ABXX.WT name: ABAXX TECHNOLOGIES INC. WARRANTS board_lot: 100 ...
Changes can be made in this security master list and reloaded by restarting the NEOE CBBO feed.
Installation & Setup
setup.py
Script
The setup.py
Python script configures all of the channels at once and can be called as follows:
python3 setup.py --local 192.168.0.100 # Local interface (default: auto-detected IP) --address 127.0.0.1:20000 # Service Locator address --username market_data_feed # Service Locator username (default: market_data_feed) --password [REQUIRED] # Service Locator password
Operations
Log files are generated as srv_[YYYY][MM][DD]_[HH]_[MM]_[SS].log in the runtime directory, upon termination, non-empty log files are moved into the log/ subfolder, while empty log files are deleted.
Each channel is managed through three core scripts:
start.sh Starts the channel, does nothing if the channel is already running.
stop.sh Stops the channel and waits for the channel to terminate.
check.sh Verifies that the channel is running.