<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.spiretrading.com/index.php?action=history&amp;feed=atom&amp;title=AsxItchMarketDataFeedClient</id>
	<title>AsxItchMarketDataFeedClient - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.spiretrading.com/index.php?action=history&amp;feed=atom&amp;title=AsxItchMarketDataFeedClient"/>
	<link rel="alternate" type="text/html" href="https://wiki.spiretrading.com/index.php?title=AsxItchMarketDataFeedClient&amp;action=history"/>
	<updated>2026-05-28T22:54:52Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.34.1</generator>
	<entry>
		<id>https://wiki.spiretrading.com/index.php?title=AsxItchMarketDataFeedClient&amp;diff=142&amp;oldid=prev</id>
		<title>Kamal: Created page with &quot;Support for ASX Trade ITCH market data is provided by the AsxItchMarketDataFeedClient. This market data feed can be used by Spire to populate the security database for ASX lis...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.spiretrading.com/index.php?title=AsxItchMarketDataFeedClient&amp;diff=142&amp;oldid=prev"/>
		<updated>2026-05-27T20:14:03Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;Support for ASX Trade ITCH market data is provided by the AsxItchMarketDataFeedClient. This market data feed can be used by Spire to populate the security database for ASX lis...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Support for ASX Trade ITCH market data is provided by the AsxItchMarketDataFeedClient. This market data feed can be used by Spire to populate the security database for ASX listed securities, BBO quotes, time and sales, book quotes and order imbalances. In addition to real time market data, ASX Trade ITCH also provides a market data snapshot used for data recovery along with retransmission of dropped packets, both of which are fully supported.&lt;br /&gt;
&lt;br /&gt;
For more information about the ASX ITCH protocol and connectivity, refer to the [https://www.asxonline.com/public/documents/asx-trade-open-interface-manuals.html ASX Trade Open Interface manuals].&lt;br /&gt;
&lt;br /&gt;
== Feed Partitioning ==&lt;br /&gt;
&lt;br /&gt;
By default ASX ITCH is split into multiple feeds each handling a range of securities. Each feed is placed in its own directory and named &amp;lt;code&amp;gt;asxitch_partition[N]&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;N = 1&amp;lt;/code&amp;gt; representing the first feed. Each feed also has its own configuration file.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
Each feed is configured via a YAML file (&amp;lt;code&amp;gt;config.yml&amp;lt;/code&amp;gt;) with the following structure:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
service_locator:&lt;br /&gt;
  # The address of the Service Locator (host:port).&lt;br /&gt;
  address: &amp;quot;10.0.0.5:20000&amp;quot;&lt;br /&gt;
  # The account username used to authenticate with the Service Locator.&lt;br /&gt;
  username: market_data_feed&lt;br /&gt;
  # The password for the Service Locator account.&lt;br /&gt;
  password: [REQUIRED]&lt;br /&gt;
&lt;br /&gt;
# Rate at which market data snapshots are sampled and forwarded to the&lt;br /&gt;
# Market Data Server. A higher rate reduces load at the cost of latency.&lt;br /&gt;
sampling: 100ms&lt;br /&gt;
&lt;br /&gt;
# Multicast group address and port for the ITCH feed.&lt;br /&gt;
host: &amp;quot;239.0.0.1:21801&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Network interface to join the multicast group on.&lt;br /&gt;
interface: &amp;quot;0.0.0.0:0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# UDP socket receive buffer size in bytes (default: 128 MB).&lt;br /&gt;
receive_buffer: 134217728&lt;br /&gt;
&lt;br /&gt;
# Maximum datagram size (MTU) in bytes (optional; defaults to system MTU).&lt;br /&gt;
mtu: 1500&lt;br /&gt;
&lt;br /&gt;
# Enable logging of every received message (off by default; verbose when enabled).&lt;br /&gt;
enable_logging: false&lt;br /&gt;
&lt;br /&gt;
# Whether this partition carries time and sales data.&lt;br /&gt;
is_time_and_sale: false&lt;br /&gt;
&lt;br /&gt;
# Venue display name (e.g., &amp;quot;XASX&amp;quot;) this feed services.&lt;br /&gt;
venue: &amp;quot;XASX&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Default MPID assigned to messages that do not carry their own MPID.&lt;br /&gt;
mpid: &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Whether to consolidate multiple MPIDs into the default MPID.&lt;br /&gt;
consolidate_mpids: false&lt;br /&gt;
&lt;br /&gt;
# GLIMPSE snapshot server address (SoupBinTCP).&lt;br /&gt;
glimpse_host: &amp;quot;203.0.113.10:21803&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Timeout for the GLIMPSE login handshake.&lt;br /&gt;
glimpse_timeout: &amp;quot;00:00:10&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# GLIMPSE login credentials.&lt;br /&gt;
username: glimpse_user&lt;br /&gt;
password: [REQUIRED]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;sampling&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;host&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;interface&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;glimpse_host&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;username&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;password&amp;lt;/code&amp;gt; fields are required. All other fields have defaults.&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
&lt;br /&gt;
The AsxItchMarketDataFeedClient contains the standard suite of scripts used to manage each individual feed.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;start.sh&amp;lt;/code&amp;gt; - Starts a feed. Accepts a single feed identifier &amp;lt;code&amp;gt;partition[N]&amp;lt;/code&amp;gt; as a command line argument to start one feed, or &amp;lt;code&amp;gt;all&amp;lt;/code&amp;gt; to start every configured feed.&lt;br /&gt;
* &amp;lt;code&amp;gt;stop.sh&amp;lt;/code&amp;gt; - Stops a currently running feed. Accepts the same arguments as &amp;lt;code&amp;gt;start.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
* &amp;lt;code&amp;gt;list_feeds.sh&amp;lt;/code&amp;gt; - Outputs all currently running feeds.&lt;br /&gt;
* &amp;lt;code&amp;gt;create_softlinks.sh&amp;lt;/code&amp;gt; - Used when first setting up the feeds, or when a new feed is added, to create the necessary softlinks for each partition.&lt;br /&gt;
&lt;br /&gt;
== Logging ==&lt;br /&gt;
&lt;br /&gt;
On startup a log file is created with the name &amp;lt;code&amp;gt;srv_[YYYY][MM][DD]_[HH]_[MM]_[SS].log&amp;lt;/code&amp;gt; and is used to record dropped packets, any error messages or warnings, and, if logging is enabled in the configuration file, a dump of every received message.&lt;/div&gt;</summary>
		<author><name>Kamal</name></author>
		
	</entry>
</feed>