The esp_ommsample utility displays data received from the Reuters Market Data System (RMDS) to stdout.
esp_ommsample -u username [ OPTION ...]
The esp_ommsample utility operates as a data sink from RMDS for OMM messages. It enables you to see which fields are delivered and their values without setting up a Reuters OMM adapter and model.
esp_ommsample prints data to stdout, getting its configuration from the command line. You can run it for a specified period of time or stop it using Ctrl+C.
207 TRIN.O|TRDPRC_1=1.14|BID=1.13|ASK=1.17|ACVOL_1=1000|ASK_TIME=10:26:2|
The RIC (TRIN.O) is prefaced by a millisecond timestamp and followed by FID=value pairs, delimited by "|". Specify 2 to have the FID numbers included along with the field names: field[FID]=value. Specify 3 for the tersest format: FID=value.
You can use separator characters for environment variables. ESP_OMMSAMPLE_PAIR_SEPARATOR defaults to '='. ESP_OMMSAMPLE_FIELD_SEPARATOR defaults to '|'. ESP_OMMSAMPLE_TIMESTAMP_SEPARATOR defaults to ' '.
1 = MarketPrice m = MarketMaker o = MarketByOrder [ p = MarketByPrice ] s = SymbolList
cd $ESP_RMDSOMM_HOME/bin ./esp_ommsample -u myUsername -r MY_SERVICE -m 1 -s GOOG.O >& esp_ommsample.out &