@@ -1894,7 +1894,41 @@ miax_pearlequities_expressorders_meo_v2_7_size_of.purge_status = 1
18941894
18951895-- Display: Purge Status
18961896miax_pearlequities_expressorders_meo_v2_7_display .purge_status = function (value )
1897- return " Purge Status: " .. value
1897+ if value == " " then
1898+ return " Purge Status: Successful (<whitespace>)"
1899+ end
1900+ if value == " C" then
1901+ return " Purge Status: Matching Engine Is Not Available (C)"
1902+ end
1903+ if value == " E" then
1904+ return " Purge Status: Exceeded Test Symbol Throttle (E)"
1905+ end
1906+ if value == " I" then
1907+ return " Purge Status: Invalid Mpid (I)"
1908+ end
1909+ if value == " J" then
1910+ return " Purge Status: Invalid Price (J)"
1911+ end
1912+ if value == " O" then
1913+ return " Purge Status: Invalid Client Order Id (O)"
1914+ end
1915+ if value == " P" then
1916+ return " Purge Status: Request Is Not Permitted For This Session (P)"
1917+ end
1918+ if value == " S" then
1919+ return " Purge Status: Invalid Symbol Id (S)"
1920+ end
1921+ if value == " X" then
1922+ return " Purge Status: Mpid Not Permitted (X)"
1923+ end
1924+ if value == " Z" then
1925+ return " Purge Status: Undefined Reason (Z)"
1926+ end
1927+ if value == " *" then
1928+ return " Purge Status: Downgraded From Older Version (*)"
1929+ end
1930+
1931+ return " Purge Status: Unknown(" .. value .. " )"
18981932end
18991933
19001934-- Dissect: Purge Status
@@ -1973,7 +2007,7 @@ miax_pearlequities_expressorders_meo_v2_7_dissect.aggressive_side_purge_response
19732007 -- Symbold Id: 4 Byte Unsigned Fixed Width Integer
19742008 index , symbold_id = miax_pearlequities_expressorders_meo_v2_7_dissect .symbold_id (buffer , index , packet , parent )
19752009
1976- -- Purge Status: 1 Byte Ascii String
2010+ -- Purge Status: 1 Byte Ascii String Enum with 11 values
19772011 index , purge_status = miax_pearlequities_expressorders_meo_v2_7_dissect .purge_status (buffer , index , packet , parent )
19782012
19792013 -- Number Of Orders Cancelled: 1 Byte Unsigned Fixed Width Integer
0 commit comments