Package codes-iso-10383

This package contains an implementation of the ISO 10383 Securities and related financial instruments — Codes for exchanges and market identification (MIC) specification.

ISO 10383 specifies a universal method of identifying exchanges, trading platforms, regulated or non-regulated markets and trade reporting facilities as sources of prices and related information in order to facilitate automated processing.

It is intended for use in any application and communication for identification of places

Note that field descriptions are taken from ISO 10383 Market Identifier Codes - Release 2.0 Factsheet.

For notes on the design of the API, see the repository README.

Example

```rust use codesiso10383::{Category, MarketIdCode, Status};

let market = MarketIdCode::XNCM; asserteq!(market.operatingcode(), Some(MarketIdCode::XNAS)); asserteq!(market.issegment(), true); asserteq!(market.marketname(), "NASDAQ CAPITAL MARKET"); asserteq!(market.status(), Status::Active); asserteq!(market.marketcategorycode(), Some(Category::NSPD)); ```

Features

By default only the serde feature is enabled, the [MarketIdCode::code] and [MarketIdCode::operatingcode], and [MarketIdCode::issegment] methods cannot be excluded.

Changes

Version 0.1.5

Version 0.1.4

Version 0.1.3

Version 0.1.2

Version 0.1.1

Version 0.1.0

TODO

TBD