National Commodity and Derivatives Exchange

National Commodity & Derivatives Exchange Limited (NCDEX) is an online commodity exchange based in India. It has an independent board of directors and provides a commodity exchange platform for market participants to trade in commodity derivatives. It is a public limited company, incorporated on 23 April 2003 under the Companies Act, 1956 and obtained its Certificate for Commencement of Business on 9 May 2003. It commenced operations on 15 December 2003.

National Commodity & Derivatives Exchange Ltd.
Public
IndustryBusiness services
Founded15 December 2003
Headquarters
Mumbai, Maharashtra
,
Key people
Vijay Kumar, MD & CEO (in charge)
ProductsFutures
Websitewww.ncdex.com/index.aspx

As of 31 July 2013, NCDEX has 848 registered members and client base of about 20 Lakhs and offers trading on more than 49,000 terminals across 1,000 centers in India. It facilitates deliveries of commodities through a network of over 594 accredited warehouses through eight warehouse service providers, with holding capacity of around 1.5 million tonnes and offers average deliveries of 1 lakh MT at every contract expiry. NCDEX has offices in Mumbai, Delhi, Ahmedabad, Indore, Hyderabad, Jaipur, and Kolkata.[1]

Shareholder consortium

  • Jaypee Capital Services Limited[2]
gollark: As of now, my code does```nimproc renderToHtml*(input: string): string = let wlRegex = re"\[\[([^:\]]+):?([^\]]+)?\]\]" let opt = CMARK_OPT_UNSAFE or CMARK_OPT_FOOTNOTES or CMARK_OPT_STRIKETHROUGH_DOUBLE_TILDE or CMARK_OPT_TABLE_PREFER_STYLE_ATTRIBUTES # create parser instance let str: cstring = input len: csize_t = len(input).csize_t parser: ParserPtr = cmark_parser_new(opt.cint) if parser == nil: raise newException(CatchableError, "failed to initialize parser") defer: cmark_parser_free(parser) [further initialization stuff] # parse document, get AST cmark_parser_feed(parser, str, len) let doc = cmark_parser_finish(parser) defer: cmark_node_free(doc) if doc == nil: raise newException(CatchableError, "parsing failed - should not occur") # iterate over AST using built-in cmark-gfm AST iteration thing for (evType, node) in cmarkTree(doc): # if it is a text node [OPERATIONS ON RELEVANT NODE THING] let html: cstring = cmark_render_html(doc, opt.cint, cmark_parser_get_syntax_extensions(parser)) defer: free(html) result = $html```
gollark: cmark. I will explain.
gollark: Hmm. Gibson, you use nim, yes? How can I nicely™ abstract this C library?
gollark: Hi.
gollark: Why are you not just... using an actual IRC client?

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.