Mutual Fund Dissemination Service (MFDS)

Size: px
Start display at page:

Download "Mutual Fund Dissemination Service (MFDS)"

Transcription

1 Mutual Fund Dissemination Service (MFDS) Web-based data access option Data format specification as of January 17, 2018 Managed by Nasdaq Global Information Services

2 Table of Contents Background... 3 Product Description... 3 Sign Up Process... 3 Web Access Option... 4 Web Site Download Option... 4 Web Service Architecture... 5 General Information... 5 Sample code calls... 5 Web Service Parameters... 6 Upcoming Release(s)... 9 Instrument Registration / Instrument Code Release June MFDS Valuation Report File Format Valuation Report Mutual Funds, Annuities, UITs, Structured Products, AIPs, NextShares, CITs, Managed Accounts, Separate Accounts, and Hedge Funds Valuation Report Money Market Funds Dividend Report All Instruments Distribution Report All Instruments Appendix A - Version Control Log Appendix B - MFQS Data Reports Updated January 17, 2018 Page 2

3 Background Product Description Nasdaq recently introduced a secured web-based delivery mechanism for MFQS daily valuation data content traditionally delivered via the Mutual Fund Dissemination Service (MFDS) data feed. Through the MFQS website ( firms may download the Valuation Reports for the current trading day or for a prior trading day within the past two or more calendar months. The MFQS web service reports outlined in this document are available for download from Monday mornings at 12:00 a.m., Eastern Time (ET) through Friday evenings at 11:00 p.m., ET. While the Valuation Reports may be accessed from MFQS website at any point in time during the day, firms should pull the file after 8:00 p.m., Eastern Time (ET), for the complete day s records. As of September 2015, the MFQS valuation reporting period runs from 8:00 a.m., ET to 8:00 p.m., ET. Sign Up Process Nasdaq requires that all users have a valid security certificate, user ID and password to access the MFDS files via secured MFQS website or web service option. Please note that the security certificate, user ID and password must all be associated with the same user account. To obtain access, the subscribing firm must complete and submit the following forms: Nasdaq Global Data Agreement (for first time Nasdaq data recipients only) Nasdaq System Application (for new MFQS applications only) Nasdaq Data Feed Request Form (for all firms) Nasdaq Web Logon Request Form (for all firms / users) For questions about the subscription process, please contact Nasdaq Global Data Operations at Updated January 17, 2018 Page 3

4 Web Access Option MFDS Web-Based Data Access Option Web Site Download Option Authorized MFDS users may download the daily valuation files via the MFQS secured website at From the top navigation bar, the Valuation Report options are located under the Reports menu option. On the Valuation Report page, users must select report format before clicking on the Get Report command button. User may also enter filters such as Instrument Type, MFQS Tier, and Report Date. Updated January 17, 2018 Page 4

5 Web Service Architecture MFDS Web-Based Data Access Option General Information The MFDS Valuation Report data files will be accessible via Secured Web Service. In order to access the files, MFDS Valuation Report users must have a valid security certificate, user ID and password from Nasdaq. MFQS web users will be prompted via to periodically update security certificate and password. Please contact Nasdaq Trading Services at if you need assistance updating your security certificate or password. Nasdaq has modified the authentication process for fetching files from the MFQS Secure Web Service. All programmatically generated calls should contain client certificate issued by Nasdaq (Nasdaq Web Security Framework). Exported ( certificate can be saved as a file and added to the request. For security reasons, Nasdaq requires that firms access the MFQS web services via POST (user credentials passed via form post) method. Sample code calls The following is an example call that can be used to retrieve files: GetFile(" ValuationReportFund&Type=pipe","YOURUSERNAME","YOURPASSWORD", PATHTOSAVEDCERT, CERTPASSWORD ); public static void GetFile (string url, string username, string password, string certpath, string certpassword) { string postdata = String.Format("username={0}&password={1}", username, password); StreamReader sr = null; HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url); request.method = "POST"; request.accept = "text/html"; request.useragent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"; ///Exported client certificate added to the request. X509Certificate yourcert = new X509Certificate(certPath, certpassword); request.clientcertificates.add(yourcert); byte[] bytearray = System.Text.Encoding.UTF8.GetBytes(postData); request.contenttype = "application/x-www-form-urlencoded"; request.contentlength = bytearray.length; Stream datastream = request.getrequeststream(); datastream.write(bytearray, 0, bytearray.length); datastream.close(); try { using (HttpWebResponse response = (HttpWebResponse)request.GetResponse()) { Updated January 17, 2018 Page 5

6 } if ((int)response.statuscode < 400 (int)response.statuscode > 499) { sr = new StreamReader(response.GetResponseStream()); //here you can parse the stream and store in db, or write to a file //i will simply write it to the console Console.WriteLine(sr.ReadToEnd()); } else { //error in web request returned by server Console.WriteLine(response.StatusCode + ": " + response.statusdescription); } } } catch (Exception e) { Console.WriteLine(e.Message); } finally { sr.close(); } In the sample code above, clients need to make the necessary adjustments in the highlighted text. For example, client should replace username and password with their unique assigned logon credentials from Nasdaq. Clients also need to present a valid client side certificate Nasdaq Web Security Framework. Clients should replace the code report parameters as needed. Web Service Parameters To retrieve the MFDS Valuation Report, Web Service Users shall need to enter a call with the following parameters: Parameter Required Definition / Optional Reportname Required File name for the Valuation Report being requested. Allowable values are: Code ValuationReportFund Definition Daily valuation messages for Mutual Funds, Annuities, UITs, AIPs, Structured Products, NextShares, Collective Investment Trusts, Managed Accounts, Separate Accounts, and Hedge Funds. File includes current day s values and prior day corrected values reported on the given Update Date. Updated January 17, 2018 Page 6

7 ValuationReportMoneyMarket ValuationReportDIV ValuationReportDST Daily valuation messages for money market funds. File includes current day s values and prior day corrected values reported on the given Update Date. Income distributions cash dividends, stock dividends, special dividends and interest payments for all MFQS instrument types by Update Date. File includes current day s values and prior day corrected values reported on the given Update Date. Capital distributions such as capital gains, return on capital (ROC) and unallocated distributions for all MFQS instrument types by Update Date. File includes current day s values and prior day corrected values reported on the given Update Date. Type Required File format for Valuation Report being requested. Allowable values are: Code File Type CSV Comma Delimited Text File - PIPE Pipe ( ) Delimited Text File XML File with XML Headers ExcelXML MS-Excel (XML) File Date Optional Trading / update date for the MFDS report requested. Dates should be entered in MM-DD-YYYY or MM/DD/YYYY format. Nasdaq supports MFDS valuation reports for the current trading date and for trading dates up to 60 days in the past. If no date is specified, the system shall return the current trading day s file. Fundtype Optional Optional asset class filter for MFDS valuation reports. Allowable codes by report are: Code Asset Class Supported Reports MFUND Mutual Funds ValuationReportFund, ValuationReportDIV, ValuationReportDST Updated January 17, 2018 Page 7

8 UIT Unit Investment Trusts ValuationReportFund, ValuationReportDIV, ValuationReportDST ANN Annuities ValuationReportFund, ValuationReportDIV, ValuationReportDST AIP Alternative Investment Products ValuationReportFund, ValuationReportDIV, ValuationReportDST SP Structured Products ValuationReportFund, ValuationReportDIV, ValuationReportDST, MMF EM CT Money Market Funds NextShares Exchange Traded Managed Fund Collective Investment Trust ValuationReportMoneyMarket, ValuationReportDIV, ValuationReportDST ValuationReportFund, ValuationReportDIV, ValuationReportDST ValuationReportFund, ValuationReportDIV, ValuationReportDST MA Managed Accounts ValuationReportFund, ValuationReportDIV, ValuationReportDST SA Separate Accounts ValuationReportFund, ValuationReportDIV, ValuationReportDST HF Hedge Fund ValuationReportFund, ValuationReportDIV, ValuationReportDST If no filter is specified, the Valuation reports will show all MFQS asset classes include in definition. Tier Optional Optional MFQS listing tier filter for MFDS Valuation Reports. Allowable value is: Code Listing Tier Instrument Notes NML News Media List News Media List is restricted to mutual funds and money market funds that meet specified asset and shareholder criteria. If no filter is specified, the Valuation reports will show all MFQS instruments for the given Update Date. Reportingtype Optional Optional reporting type filter for ValuationReportFund and ValuationReportMoneyMarket files. Allowable values are: Updated January 17, 2018 Page 8

9 Code CURR CORR Reporting Type Current Day s Valuation data only Filter to show only those valuation records which have the same Entry Date and Update Date. Corrected Valuation Data only Filter to show only those valuation records which have a different Entry Date and Update Date. If no filter is specified, the Valuation reports will show all entries for the given Update Date. Upcoming Release(s) Instrument Type / Instrument Code Release March 2018 On or about March 26, 2018, Nasdaq will release 4 new Instrument Types and 4 new Instrument Codes. These new codes allow our customers to list Collective Investment Trust, Managed Accounts, Separate Accounts, and Hedge Funds. The new Instrument Types allow for MFQS customers to list Collective Investment Trust, Separately Managed Accounts (SMA), Unified Managed Accounts (UMA), and Separate Accounts. Code CT MA SA HF Instrument Type Collective Investment Trust (CIT) Managed Account Separate Account Hedge Fund Code Instrument Code 1 Collective Investment Trust (CIT) 2 Separately Managed Account 3 Unified Managed Account 4 Separate Account Instrument Registration / Instrument Code Release June 2017 Based on client demand, Nasdaq is modifying MFQS eligibility standards to allow both registered and non-registered instruments to use the valuation service. As a service to MFDS subscribers, Nasdaq will add a Regulation Type field to all valuation report download files on or about June 5, The new field will denote the U.S. regulatory oversight body with which the MFQS instrument is registered. The allowable values are: Code Value Description Updated January 17, 2018 Page 9

10 S U.S. Securities and Exchange Commission (SEC) Instrument is covered by SEC rules. C U.S. Commodity Futures Trading Commission (CFTC) Instrument is covered by CFTC rules. M Municipal Securities Rulemaking Board (MSRB) Instrument is covered by MSRB rules. X Exemption Instrument meets SEC or CFTC exemption requirements. N Non-Registered Funds Instrument is not covered by U.S. regulatory agency rules. As part of the June 2017 release, Nasdaq will also add two codes to the existing Instrument Code field. The new Instrument Code values are: Code Value Description Y Interval Fund An interval fund is a type of closed-end investment company that periodically offers to repurchase its shares from shareholders. Please refer to the SEC website for a more complete description. Z Business Development Company (BDC) Note: MFQS supports a footnote code of I to denote when repurchase offer periods. BDCs is a type of closed-end investment company for the purpose of making capital more readily available to small, developing, and financially troubled companies that do not have ready access to the public capital markets or other forms of conventional financing. Please refer to the SEC website for BDC rules. As of June 5, 2017, Nasdaq will also require that firms access the MFQS web services via POST (user credentials passed via form post) method. Due to security reasons, Nasdaq will no longer support the GET access method for MFQS web services. Updated January 17, 2018 Page 10

11 MFDS Valuation Report File Format Valuation Report Mutual Funds, Annuities, UITs, Structured Products, AIPs, NextShares, Collective Investment Trust, Managed Accounts, Separate Accounts, and Hedge Funds. File Name: ValuationReportFund Field Name Description / Values MFQS Symbol Reflects the Nasdaq assigned ticker symbol for the MFQS instrument. Status Instrument Name Issuer Name Instrument Type / Tier (New codes as of March 26, 2018) Note: ValuationReportFund contains at least one record for each active mutual fund, annuity, UIT, AIP and structured product instrument in the MFQS system. Denotes instrument status in MFQS system on Update Date. Allowable values are: Code Description Active Live Production Instrument: MFQS symbol was active in system on the Update Date reflected in the Valuation Report. Test Test Instrument: MFQS symbol was set up as test instrument. Reflects the instrument name as it appears in the MFQS system. MFQS instrument name is 150 bytes and may include special characters (such as commas). Reflects the Issuer Name as it appears in the MFQS system. MFQS issuer name is 150 bytes and may include special characters (such as commas). Denotes MFQS instrument type and tier associated with symbol / instrument name. The current allowable values are: Value Description AN Annuity AP Alternative Investment Product (AIP) EM NextShares Exchange Traded Managed Fund MF Mutual Fund News Media List MS Mutual Fund Standard / Supplemental List SP Structured Product US Unit Investment Trust (UIT) CT Collective Investment Trust MA Managed Accounts SA Separate Accounts HF Hedge Funds Updated January 17, 2018 Page 11

12 File Name: ValuationReportFund Field Name Description / Values Instrument Code Denotes instrument sub-type associated with symbol / instrument name. (New codes as of March Allowable values are: 26, 2018) Value Description Annuities M Annuity Variable N Annuity Equity Indexed Alternative Investment Products (AIPs) B AIP - Managed Future Funds F AIP - Fund of Hedge Funds I AIP - Non-Traded REITs J AIP - Non-Traditional Hedge Funds (Registered) K AIP - Commodity Pool Funds P AIP - Private Equity Offerings Mutual Funds C Mutual Fund - Closed End (including Exchange Traded Funds) O Mutual Fund - Open End Y Interval Fund Z Business Development Company (BDC) Structured Products R Structured Product Hybrid S Structured Product Single Stock T Structured Product Buffer / Barrier Enhanced Upside U Structured Product Principal Protected V Structured Product Commodity / FX W Structured Product Rates Enhanced L Structured Product Other Unit Investment Trusts (UITs) D Debt UIT E Equity UIT NextShares Exchange Traded Managed Funds Q NextShares Hedge Fund H Hedge Fund Collective Investment Trust 1 Collective Investment Trust Managed Accounts 2 Separately Managed Accounts (SMA) 3 Unified Managed Accounts (UMA) Separate Accounts Updated January 17, 2018 Page 12

13 File Name: ValuationReportFund Field Name Description / Values 4 Separate Accounts CUSIP Note: Nasdaq reserves the right to make Instrument Code values specific to a given Instrument Type / Tier in a future release. Reflects the financial instrument code for the instrument assigned by CUSIP Global Services (CGS) and reported to MFQS by the issuer / administrator. Notes: CUSIP is comprised of 9 alphanumeric characters and should be imported into MS-Excel and other programs as a text field. Reporting Type Firms must be authorized by CGS to receive access CUSIP data content. Nonauthorized firms will receive field as blank. Reflects the type of entry for instrument on given Update Date. Allowable values are: Value Description C Corrected value reported for the MFQS instrument for a prior MFQS business date. R I E Note: Corrections appear in file based on Update Date. Corrections should be applied to the MFQS instrument record based on Entry Date. Last entry for the MFQS instrument for the Update Date. Through July 8, 2016 Last intraday entry for the MFQS instrument for the Update Date. As of July 11, 2016 All intraday entries for the MFQS instrument for the Update Date / Update Time. No valuation record submitted for the MFQS instrument for the Update Date (as of the Update Time). Footnotes Please note that most MFQS instrument prices are remitted between 5 p.m. and 8 p.m., US Eastern Time. Reflects MFQS footnote code(s) entered for instrument on Update Date. Footnotes are used to indicate special pricing circumstances affecting the MFQS instrument. Allowable values by fund type are as follows: Updated January 17, 2018 Page 13

14 File Name: ValuationReportFund Field Name Description / Values Value Definition Instrument Type C Revaluation AIP and Structured Product D Capital gains distribution* All F Fund uses prior day prices for MFQS All reporting purposes H Deferred sales charge UIT I Repurchase offer period for Interval Mutual Fund Fund N No load fund Mutual Fund O Primary offering UIT P 12(b)1 fee Mutual Fund R Redemption fee Mutual Fund S Stock split or dividend adjustment* All W NRO indicator UIT X Cash dividend or income distribution All adjustment* Y Secondary offering UIT * Adjustments should be made on Ex-Date. See separate Dividend or Capital Distribution message for details. NAV Reflects the Net Asset Value (NAV) for instrument as reported via the MFQS system for the stated Entry Date. Offer Price Market Price Redemption Price NAV may be entered up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no NAV was remitted for instrument via the MFQS system for Entry Date. Please note that UITs report Redemption NAV (rather than NAV) via MFQS system. Reflects the Offer Price for instrument as reported via the MFQS system for the stated Entry Date. Offer Price may be reported up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no Offer Price was remitted for instrument via the MFQS system for Entry Date. Please note that closed-end funds report Market (rather than Offer) Price. Reflects the Market Price for a closed end fund instrument as reported via the MFQS system for the stated Entry Date. Market Price may be reported up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no Market Price was remitted for instrument via the MFQS system for Entry Date. Market is reported for closed end funds and ETMFs. Reflects the Redemption Price / Redemption NV for a UIT instrument as reported via the MFQS system for the stated Entry Date. Updated January 17, 2018 Page 14

15 File Name: ValuationReportFund Field Name Description / Values Wrap Price Total Net Assets Current Yield Redemption NAV may be reported up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no Redemption NAV was remitted for instrument via the MFQS system for Entry Date. Redemption NAV is currently only reported for UITs. Denotes the price that an investor would pay to purchase units if the instrument were held in an account that is managed by a financial representative for a fee. Wrap Price is valid for the stated Entry Date. Wrap may be up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no Wrap Price was remitted for instrument via the MFQS system for Entry Date. Wrap Price is typically populated for UITs. Denotes the Total Net Assets (TNA), in actual dollars, for the instrument on the stated Entry Date. TNA may be reported as up to 15 whole number digits. Field will be populated as NA if no TNA value is reported via MFQS system for Entry Date. Denotes current yield (annual rate of return on investment) for a MFQS instrument as of the stated Entry Date. Current Yield is expressed as a percentage and may be either positive or negative. Examples for pipe delimited format: 5.75% yield would be stated as % yield would be stated as ELTR Accrued Interest Daily Dividend Factor Field will be populated as NA if no current yield is entered for Entry Date. Denotes the Estimated Long Term Return (ELTR) or yield over the life of the portfolio of a UIT or other MFQS instrument as of the stated Entry Date. ETLR is expressed as a percentage and may be either positive or negative. Field will be populated as NA if no current yield is entered for Update Date. Denotes the interest accrued for a MFQS instrument since the last interest payment was made to investors. Accrued Interest may be reported up to 6 whole number and 6 decimal digits. Field will be populated as NA if no accrued interest value is entered for Entry Date. Denotes the dividend factor for a MFQS instrument that declares a daily dividend. Please refer to the Daily Dividend Adjustment Indicator to determine if the MFQS pricing agent made adjustments for weekends and holidays. Updated January 17, 2018 Page 15

16 File Name: ValuationReportFund Field Name Description / Values Daily Dividend may be reported up to two whole number and six decimal digits. Field will be populated as NA if no Daily Dividend is entered for Entry Date. Daily Dividend Adjustment Indicates if the Daily Dividend Adjustment Factor was fattened to reflect weekend, holiday or other non-reported period. Allowable values are: Indicator Value Definition Y N <space> Fat adjustment reflected in Daily Dividend Factor No fat adjustment for Daily Dividend Factor Not applicable; no Daily Dividend Factor provided Entry Date Currency Pricing Agent Update Date Update Time File Date File Time Investor Type Denotes the date associated with the price information in the MFQS Valuation record. Field population rules are: Reporting Type Expected Entry Date Value(s) C Prior Day s Date Up to 365 days in the past R or I Same as Update Date E NA (Not Applicable) Denotes the currency to be used for all MFQS valuation data for the instrument. For this field, Nasdaq will use ISO Currency alphabetic codes. MFQS default is: Value Definition USD US Dollars Denotes the name of the firm that entered the valuation entry into the MFQS system for the given symbol. Denotes the date associated with the MFQS valuation report. Update Date should match the Report Date entered by client on MFQS report request page or web service query. Denotes the time that the MFQS Valuation record was reported by the pricing agent on the given Update Date. Denotes the Date that the MFQS Valuation report was requested by client. Denotes the MFQS system time that the MFQS Valuation report file was created for client. Denotes the target investor for the given money market fund instrument. The allowable values are: Value I R <space> Definition Institutional Investors Retail Investors Not available Updated January 17, 2018 Page 16

17 File Name: ValuationReportFund Field Name Description / Values Instrument Denotes the U.S. regulatory oversight body with which the MFQS instrument Registration is registered. The allowable values are: Value C M S X N Definition U.S. Commodity Futures Trading Commission (CFTC) Municipal Securities Rulemaking Board (MSRB) U.S. Securities and Exchange Commission (SEC) Exemption Not Registered with U.S. Regulatory Agency Valuation Report Money Market Funds File Name: ValuationReportMoneyMarket Field Name Description / Values MFQS Symbol Reflects the Nasdaq assigned ticker symbol for MFQS instrument. Status Instrument Name Issuer Name Instrument Type / Tier Instrument Code Note: ValuationReportFund contains at least one record for each active mutual fund, annuity, UIT, AIP and structured product instrument in the MFQS system. Denotes instrument status in MFQS system on Update Date. Allowable values are: Code Description Active Live Production Instrument: MFQS symbol was active in system on the Update Date reflected in the Valuation Report. Test Test Instrument: MFQS symbol is set up as test instrument. Reflects the current instrument name as it appears in the MFQS system. MFQS instrument name is 150 bytes and may include special characters (such as commas). Reflects the current Issuer Name as it appears in the MFQS system. MFQS issuer name is 150 bytes and may include special characters (such as commas). Denotes MFQS instrument type and tier associated with symbol / instrument name. Allowable values are: Value Description $$ Money Market Fund News Media List $S Money Market Fund Standard / Supplemental List Denotes instrument sub-type associated with symbol / instrument name. Allowable values are: Updated January 17, 2018 Page 17

18 File Name: ValuationReportMoneyMarket Field Name Description / Values Value Description A All Purpose G Governmental Bonds X Tax-Exempt Securities CUSIP Note: Nasdaq reserves the right to make Instrument Code values specific to a given Instrument Type / Tier in a future release. Reflects the financial instrument code for the instrument assigned by CUSIP Global Services (CGS) and reported to MFQS by the issuer / administrator. Notes: CUSIP is comprised of 9 alphanumeric characters and should be imported into MS-Excel and other programs as a text field. Reporting Type Firms must be authorized by CGS to receive access CUSIP data content. Nonauthorized firms will receive field as blank. Reflects the type of entry for instrument on given Update Date. Allowable values are: Value Description C Corrected value reported for the MFQS instrument for a prior MFQS business date. R I E Note: Corrections appear in file based on Update Date / Update Time. Corrections should be applied to the MFQS instrument record based on Entry Date. Last entry for the MFQS instrument for the Update Date. Through July 8, 2016 Last intraday entry for the MFQS instrument for the Update Date. As of July 11, 2016 All intraday entries for the MFQS instrument for the Update Date / Update Time. No valuation record submitted for the MFQS instrument for the Update Date (as of the Update Time). Footnotes Please note that most MFQS instrument prices are remitted between 5 p.m. and 8 p.m., US Eastern Time. Reflects MFQS footnote code(s) entered for instrument on Update Date. Footnotes are used to indicate special pricing circumstances affecting the MFQS instrument. Allowable values by fund type are as follows: Updated January 17, 2018 Page 18

19 File Name: ValuationReportMoneyMarket Field Name Description / Values Value Definition Instrument Type A Fund s return may differ due to Money Market Fund capital gains or losses B Sales or account charges may impact Money Market Fund yield D Capital gains distribution* All F Fund uses prior day prices for MFQS All reporting purposes G Redemption gate in effect Money Market Fund L Liquidity fee in effect Money Market Fund S Stock split or dividend adjustment* All X Cash dividend or income distribution adjustment* All Average Maturity Average Life NAV Gross 7 Day Yield * Adjustments should be made on Ex-Date. See separate Dividend or Capital Distribution message for details. Denotes the average time to maturity (stated in days) of the securities held by the fund. Field will be populated as NA if no Average Maturity value was remitted for instrument via the MFQS system for Entry Date. Denotes the weighted average life (in days) of a money market fund as calculated in accordance with the SEC Money Market Reform Act. Field will be populated as NA if no Average Life value was remitted for instrument via the MFQS system for Entry Date. Reflects the Net Asset Value (NAV) for instrument as reported via the MFQS system for the stated Entry Date. NAV may be entered up to 6 whole number digits and 6 decimal digits. Field will be populated as NA if no NAV was remitted for instrument via the MFQS system for Entry Date. Denotes the gross 7 day yield for a money market fund. This yield is based on average net income earned by the securities in the fund s portfolio during the past seven days. In accordance with the SEC definition, gross 7 day yield should exclude capital changes and income other than investment income. In addition, the gross seven day yield should not reflect a deduction of shareholders fees and fund operating expenses. Gross 7 day yield is expressed as a percentage and may be either positive or negative. Examples for pipe delimited format: 5.75% yield would be stated as % yield would be stated as Field will be populated as NA if no gross yield is entered for Entry Date. Updated January 17, 2018 Page 19

20 File Name: ValuationReportMoneyMarket Field Name Description / Values Subsidized 7 Day Denotes the subsidized 7 day yield (also known as simple yield) which reflects Yield the yield calculation with expense limitation in effect. Subsidized 7 day yield is expressed as a percentage and may be either positive or negative. Examples for pipe delimited format: 5.75% yield would be stated as % yield would be stated as Effective Annualized 7 Day Yield Field will be populated as NA if no subsidized yield is entered for Entry Date. Denotes the effective annualized 7 day yield for a money market fund. In calculating the effective annualized 7 day yield, most money markets assume that any income earned is reinvested. Effective annualized 7 day yield is expressed as a percentage and may be either positive or negative. Examples for pipe delimited format: 5.75% yield would be stated as % yield would be stated as Field will be populated as NA if no effective annualized 7 day yield is entered for Entry Date. While MFQS processes effective annualized 7 day yield for all trading days, news media money market funds have traditionally reported effective yield on Wednesdays only. 30 Day Yield Denotes the 30 (thirty) day yield value based on the SEC calculation methodology with expense limitation currently in effect. 30 Day Yield is expressed as a percentage and may be either positive or negative. Examples for pipe delimited format: 5.75% yield would be stated as % yield would be stated as Field will be populated as NA if no 30 day yield is entered for Entry Date. 30 Day Yield Date Denotes the period end date for which the 30 day yield was calculated. Field will be populated as NA if no 30 day yield is entered for Entry Date. Daily Dividend Factor Denotes the dividend factor for a MFQS instrument that declares a daily dividend. Please refer to the Daily Dividend Adjustment Indicator to determine if the MFQS pricing agent made adjustments for weekends and holidays. Daily Dividend may be reported up to two whole number and six decimal digits. Field will be populated as NA if no Daily Dividend is entered for Entry Date. Updated January 17, 2018 Page 20

21 File Name: ValuationReportMoneyMarket Field Name Description / Values Daily Dividend Adjustment Indicates if the Daily Dividend Adjustment Factor was fattened to reflect weekend, holiday or other non-reported period. Allowable values are: Indicator Value Definition Y N <space> Fat adjustment reflected in Daily Dividend Factor No fat adjustment for Daily Dividend Factor Not applicable; no Daily Dividend Factor provided Total Net Assets Currency Pricing Agent Entry Date Update Date Update Time File Date File Time Calculation Time Denotes the Total Net Assets (TNA), in actual dollars, for the instrument on the stated Entry Date. TNA may be reported as up to 15 whole number digits. Field will be populated as NA if no TNA value is reported via MFQS system for Entry Date. Denotes the currency to be used for all MFQS valuation data for the instrument. For this field, Nasdaq will use ISO Currency alphabetic codes. MFQS default is: Value Definition USD US Dollars Denotes the name of the firm that entered the valuation entry into the MFQS system for the given symbol. Denotes the date associated with the price information in the MFQS Valuation record. Field population rules are: Reporting Type Expected Entry Date Value(s) C Prior Day s Date Up to 365 days in the past R or I Same as Update Date E NA (Not Applicable) Denotes the date associated with the MFQS valuation report. Update Date should match the Report Date entered by client on MFQS report request page or web service query. Denotes the time that the MFQS Valuation record was reported by the pricing agent on the given Update Date. Denotes the Date that the MFQS Valuation report was requested by client. Denotes the MFQS system time that the MFQS Valuation report file was created for client. Denotes the MFQS pricing agent calculation time from the inbound money market message format. Field will be populated in HHMMSS (military time) format for the U.S. Eastern Time (ET) zone. Examples: => 11:00 a.m., ET Updated January 17, 2018 Page 21

22 File Name: ValuationReportMoneyMarket Field Name Description / Values => 4:00 p.m., ET Investor Type Instrument Registration If no time is provided in the inbound MFQS message format, the field will be populated as NA. Denotes the target investor for the given money market fund instrument. The allowable values are: Value Definition I Institutional Investors R Retail Investors <space> Not available Denotes the U.S. regulatory oversight body with which the MFQS instrument is registered. The allowable values are: Value C M S X N Definition U.S. Commodity Futures Trading Commission (CFTC) Municipal Securities Rulemaking Board (MSRB) U.S. Securities and Exchange Commission (SEC) Exemption Not Registered with U.S. Regulatory Agency Dividend Report All Instruments File Name: ValuationReportDIV Field Name Description / Values MFQS Symbol Reflects the Nasdaq assigned ticker symbol for the MFQS instrument. Status Instrument Name Note: ValuationReportDIV will contain records for only those mutual fund, annuity, UIT, AIP and structured product instruments that reported a Dividend on the Entry Date. Denotes instrument status in MFQS system on Update Date. Allowable values are: Code Description Active Live Production Instrument: MFQS symbol was active in system on the Update Date reflected in the Valuation Report. Test Test Instrument: MFQS symbol was set up as test instrument. Reflects the instrument name as it appears in the MFQS system. MFQS instrument name is 150 bytes and may include special characters (such as commas). Updated January 17, 2018 Page 22

23 Issuer Name Instrument Type / Tier (New codes as of March 26, 2018) Instrument Code (New codes as of March 26, 2018) Reflects the Issuer Name as it appears in the MFQS system. MFQS issuer name is 150 bytes and may include special characters (such as commas). Denotes MFQS instrument type and tier associated with symbol / instrument name. The current allowable values are: Value Description AN Annuity AP Alternative Investment Product (AIP) $$ Money Market Fund News Media List $S Money Market Fund Standard / Supplemental List EM NextShares Exchange Traded Managed Fund MF Mutual Fund News Media List MS Mutual Fund Standard / Supplemental List SP Structured Product US Unit Investment Trust (UIT) CT Collective Investment Trust (CIT) MA Managed Accounts SA Separate Accounts HF Hedge Fund Denotes instrument sub-type associated with symbol / instrument name. The current allowable values are: Value Description Annuities M Annuity Variable N Annuity Equity Indexed Alternative Investment Products (AIPs) B AIP - Managed Future Funds F AIP - Fund of Hedge Funds I AIP - Non-Traded REITs J AIP - Non-Traditional Hedge Funds (Registered) K AIP - Commodity Pool Funds P AIP - Private Equity Offerings Money Market Funds A All Purpose G Governmental Bonds X Tax-Exempt Securities Mutual Funds C Closed End Funds (including Exchange Traded Funds) O Open End Funds Y Interval Fund Z Business Development Company (BDC) Updated January 17, 2018 Page 23

24 Structured Products R Structured Product Hybrid S Structured Product Single Stock T Structured Product Buffer / Barrier Enhanced Upside U Structured Product Principal Protected V Structured Product Commodity / FX W Structured Product Rates Enhanced L Structured Product Other Unit Investment Trusts (UITs) D Debt UIT E Equity UIT NextShares Exchange Traded Managed Funds Q NextShares Hedge Funds H Hedge Funds Collective Investment Trust 1 Collective Investment Trust Managed Accounts 2 Separately Managed Accounts (SMA) 3 Unified Managed Accounts (UMA) Separate Accounts 4 Separate Accounts CUSIP Note: Nasdaq reserves the right to make Instrument Code values specific to a given Instrument Type / Tier in a future release. Reflects the financial instrument code for the instrument assigned by CUSIP Global Services (CGS) and reported to MFQS by the issuer / administrator. Notes: CUSIP is comprised of 9 alphanumeric characters and should be imported into MS-Excel and other programs as a text field. Action Firms must be authorized by CGS to receive access CUSIP data content. Nonauthorized firms will receive field as blank. Denotes the type of corporate action update that is being disseminated for the stated Fund ID, Cash Distribution Type and Ex-Date combination. Allowable values are: Code N C Definition New record: Add corporate action record for stated fund ID, cash distribution type and ex-date. Corrected record: Update corporate action record for stated fund ID, cash distribution type and ex-date combination with new field values. Updated January 17, 2018 Page 24

25 Cash Distribution Type Total Cash Distribution Non-Qualified Cash Distribution Qualified Cash Distribution Tax-Free Cash Distribution Ordinary Foreign Tax Credit Qualified Foreign Tax Credit Stock Dividend Ratio X Cancelled record: Remove corporate action record for stated fund ID, cash distribution and ex-date combination. Indicates the type of cash distribution being reported in the following cash distribution fields. Allowable values are: Value Definition D Cash Dividend I Interest Income S Special Cash Dividend <space> Not applicable Denotes the total cash dividend or total interest distribution being reported for the MFQS instrument. Firms may report the breakdown of cash dividends / interest distribution in the fields that follow. The field may be populated as NA if instrument is not declaring a cash distribution. For Cash Distributions: Reflects the portion of the cash dividend or interest income that is taxed as ordinary income to the shareholder. Please note that this value should be entered as a dollar amount (not a percentage). Reporting of breakouts is optional in MFQS system. Field will be populated as NA if data element is not provided by firm. For Cash Distributions: Reflects the portion of the cash dividend or interest that is taxed as a qualified dividend to shareholder. Please note that this value should be entered as a dollar amount (not a percentage). Reporting of breakouts is optional in MFQS system. Field will be populated as NA if data element is not provided by firm. For Cash Distributions: Reflects the portion of the cash dividend or interest attributable to bonds that is not taxed to the shareholder. Please note that this value should be entered as a dollar amount (not a percentage). Reporting of breakouts is optional in MFQS system. Field will be populated as NA if data element is not provided by firm. For Cash Distributions: Reflects the portion of the cash dividend or interest from a foreign corporation that is not qualified by the IRS. Please note that this value should be entered as a dollar amount (not a percentage). Reporting of breakouts is optional in MFQS system. Field will be populated as NA if data element is not provided by firm. For Cash Distributions: Reflects the portion of the cash dividend or interest attributable to qualified foreign corporation as defined by the IRS. Please note that this value should be entered as a dollar amount (not a percentage). Reporting of breakouts is optional in MFQS system. Field will be populated as NA if data element is not provided by firm. Denotes the stock split/dividend ratio for a MFQS instrument. The field format is as follows: Updated January 17, 2018 Page 25

26 2-for-1 stock split should be reported as for-2 reverse stock split should be reported as % stock dividend would be reported as Currency Payment Date Record Date Ex Date Reinvest Date Pricing Agent Update Date Update Time File Date File Time Instrument Registration Field will be populated as NA if data element is not provided by firm. Denotes the currency to be used for all MFQS valuation data for the instrument. For this field, Nasdaq will use ISO Currency alphabetic codes. MFQS default is: Value Definition USD US Dollars Denotes the date on which dividends or interest payments will be distributed to the MFQS instrument s shareholders of record. Field will be populated as NA if data element is not provided by firm. Denotes the date on which shareholders must hold fund shares to receive dividend or interest payment. Field will be populated as NA if data element is not provided by firm. Denotes the ex-date for the dividend record. This is the date that NAV should be adjusted. Denotes the reinvestment date for the dividend. Field will be populated as NA if data element is not provided by firm. Denotes the name of the firm that entered the valuation entry into the MFQS system for the given symbol. Denotes the date associated with the MFQS valuation report. Update Date should match the Report Date entered by client on MFQS report request page or web service query. Denotes the time that the MFQS Valuation record was reported by the pricing agent on the given Update Date. Denotes the Date that the MFQS Valuation report was requested by client. Denotes the MFQS system time that the MFQS Valuation report file was created for client. Denotes the U.S. regulatory oversight body with which the MFQS instrument is registered. The allowable values are: Value C M S X N Definition U.S. Commodity Futures Trading Commission (CFTC) Municipal Securities Rulemaking Board (MSRB) U.S. Securities and Exchange Commission (SEC) Exemption Not Registered with U.S. Regulatory Agency Distribution Report All Instruments File Name: ValuationReportDST Updated January 17, 2018 Page 26

27 Field Name MFQS Symbol Status Instrument Name Issuer Name Instrument Type / Tier (New codes as of March 26, 2018) Instrument Code (New codes as of March 26, 2018) Description / Values Reflects the Nasdaq assigned ticker symbol for the MFQS instrument. Note: ValuationReportDIV will contain records for only those mutual fund, annuity, UIT, AIP and structured product instruments that reported a Dividend on the Entry Date. Denotes instrument status in MFQS system on Update Date. Allowable values will be: Code Description Active Live Production Instrument: MFQS symbol was active in system on the Update Date reflected in the Valuation Report. Test Test Instrument: MFQS symbol was set up as test instrument. Reflects the instrument name as it appears in the MFQS system. MFQS instrument name is 150 bytes and may include special characters (such as commas). Reflects the Issuer Name as it appears in the MFQS system. MFQS issuer name is 150 bytes and may include special characters (such as commas). Denotes MFQS instrument type and tier associated with symbol / instrument name. The current allowable values are: Value Description AN Annuity AP Alternative Investment Product (AIP) $$ Money Market Fund News Media List $S Money Market Fund Standard / Supplemental List EM NextShares Exchange Traded Managed Fund MF Mutual Fund News Media List MS Mutual Fund Standard / Supplemental List SP Structured Product US Unit Investment Trust (UIT) CT Collective Investment Trust MA Managed Accounts SA Separate Accounts HF Hedge Funds Denotes instrument sub-type associated with symbol / instrument name. Allowable values are: Value Description Annuities M Annuity Variable Updated January 17, 2018 Page 27

28 N Annuity Equity Indexed Alternative Investment Products (AIPs) B AIP - Managed Future Funds F AIP - Fund of Hedge Funds I AIP - Non-Traded REITs J AIP - Non-Traditional Hedge Funds (Registered) K AIP - Commodity Pool Funds P AIP - Private Equity Offerings Money Market Funds A All Purpose G Governmental Bonds X Tax-Exempt Securities Mutual Funds C Mutual Fund - Closed End (including Exchange Traded Funds) O Mutual Fund - Open End Y Interval Fund Z Business Development Company (BDC) Structured Products R Structured Product Hybrid S Structured Product Single Stock T Structured Product Buffer / Barrier Enhanced Upside U Structured Product Principal Protected V Structured Product Commodity / FX W Structured Product Rates Enhanced L Structured Product Other Unit Investment Trusts (UITs) D Debt UIT E Equity UIT NextShares Exchange Traded Managed Funds (ETMFs) Q NextShares Hedge Fund H Hedge Fund Collective Investment Trust 1 Collective Investment Trust Managed Accounts 2 Separately Managed Accounts (SMA) 3 Unified Managed Accounts (UMA) Separate Accounts 4 Separate Accounts Updated January 17, 2018 Page 28

29 CUSIP Note: Nasdaq reserves the right to make Instrument Code values specific to a given Instrument Type / Tier in a future release. Reflects the financial instrument code for the instrument assigned by CUSIP Global Services (CGS) and reported to MFQS by the issuer / administrator. Notes: CUSIP is comprised of 9 alphanumeric characters and should be imported into MS-Excel and other programs as a text field. Action Short Term Capital Gain Long Term Capital Gain Unallocated Distributions Return Of Capital Currency Payment Date Firms must be authorized by CGS to receive access CUSIP data content. Non-authorized firms will receive field as blank. Denotes the type of corporate action update that is being disseminated for the stated Fund ID, Cash Distribution Type and Ex-Date combination. Allowable values are: Code Definition N New record: Add corporate action record for stated fund ID, cash distribution type and ex-date. C Corrected record: Update corporate action record for stated fund ID, cash distribution type and ex-date combination with new field values. X Cancelled record: Remove corporate action record for stated fund ID, cash distribution and ex-date combination. Denotes the portion of the total capital gain for the MFQS instrument that is taxed to the shareholder at the short-term capital gains rate. Field will be populated as NA if data element is not provided by firm. Denotes the portion of the total capital gain for the MFQS instrument that is taxed to the shareholder at the long-term capital gains rate. Field will be populated as NA if data element is not provided by firm. Denotes the amount of unassigned term gains (or unallocated distribution) being reported for the MFQS instrument. Field will be populated as NA if data element is not provided by firm. Denotes amount of return of capital (ROC) to the MFQS instrument s shareholders. Please note that this value should be entered as a dollar amount (not a percentage). Field will be populated as NA if data element is not provided by firm. Denotes the currency to be used for all MFQS valuation data for the instrument. For this field, Nasdaq will use ISO Currency alphabetic codes. MFQS default is: Value Definition USD US Dollars Denotes the date on which the capital distribution will be paid to the MFQS instrument s shareholders of record. Field will be populated as NA if data element is not provided by firm. Updated January 17, 2018 Page 29

30 Record Date Ex Date Reinvest Date Pricing Agent Update Date Update Time File Date File Time Instrument Registration Denotes the date on which shareholders must hold fund shares to receive the capital distribution. Field will be populated as NA if data element is not provided by firm. Denotes the ex-date for the capital distribution record. This is the date that NAV should be adjusted. Denotes the reinvestment date for the capital distribution. Field will be populated as NA if data element is not provided by firm. Denotes the name of the firm that entered the valuation entry into the MFQS system for the given symbol. Denotes the date associated with the MFQS valuation report. Update Date should match the Report Date entered by client on MFQS report request page or web service query. Denotes the time that the MFQS Valuation record was reported by the pricing agent on the given Update Date. Denotes the Date that the MFQS Valuation report was requested by client. Denotes the MFQS system time that the MFQS Valuation report file was created for client. Denotes the U.S. regulatory oversight body with which the MFQS instrument is registered. The allowable values are: Value C M S X N Definition U.S. Commodity Futures Trading Commission (CFTC) Municipal Securities Rulemaking Board (MSRB) U.S. Securities and Exchange Commission (SEC) Exemption Not Registered with U.S. Regulatory Agency Updated January 17, 2018 Page 30

31 Appendix A - Version Control Log Date Change Description November 27, 2013 Initial documentation release (Version 1.0). May 1, 2014 Modified fields / field values for August 11, 2014 release: Pricing Agent field to all Valuation files Added Status field to Dividend and Capital Distribution files Updated Status field values for test symbols in Valuation files December 15, 2014 Added the following Footnote values to be supported in 2015: Value Definition Instrument Type G Redemption gate in effect Money Market Fund I Repurchase offer period for Interval Mutual Fund Fund L Liquidity fee in effect Money Market Fund March 2, 2015 Updated MFQS Footnote Code release date to April 13, March 6, 2015 Added new Instrument Type / Tier and Instrument Code values for NextShares Exchange Traded Managed Funds. For the Instrument Type/Tier field, the following code will be added in the September 2015 timeframe: Value Description EM NextShares Exchange Traded Managed Fund For the Instrument Code field, the following value will be added in the September 2015 timeframe: Value Description NextShares Exchange Traded Managed Funds Q NextShares Nasdaq is in the process of defining the MFQS symbology for ETMFs. For MFQS end-of-day valuation reporting purposes, Nasdaq is assigning 7 character symbols consisting of the exchange-listed ticker symbol and a.nx suffix. (Example: ETMFCNX) March 7, 2016 Note: Nasdaq officially introduced the first NextShares instrument in February Updated Valuation Report Money Market Fund message format to include two new fields: Investor Type Calculation Time Updated January 17, 2018 Page 31

Mutual Fund Quotation Service (MFQS) Daily List Reports

Mutual Fund Quotation Service (MFQS) Daily List Reports Mutual Fund Quotation Service (MFQS) Daily List Reports Updated: January 12, 2018 Table of Contents verview... 3 Web Service Reports... 3 Secured Website Access... 3 Architecture... 4 Hours of peration...

More information

NFN Directory Web Service Parameters Directory File Format... 46

NFN Directory Web Service Parameters Directory File Format... 46 Nasdaq Fund Network (NFN) Daily List Reports Updated: June 6, 2018 Table of Contents Nasdaq Fund Network (NFN) Daily List Reports... 1 verview... 2 Web Service Reports... 2 Secured Website Access... 2

More information

NFN Directory Web Service Parameters Directory File Format... 54

NFN Directory Web Service Parameters Directory File Format... 54 Nasdaq Fund Network (NFN) Daily List Reports Updated: March 15, 2019 Table of Contents Nasdaq Fund Network (NFN) Daily List Reports... 1 verview... 2 Web Service Reports... 2 Secured Website Access...

More information

Mutual Fund Quotation Service (MFQS) Batch Upload File Format Specification for MFQS Website Users. 3/22/2018 Nasdaq Global Information Services

Mutual Fund Quotation Service (MFQS) Batch Upload File Format Specification for MFQS Website Users. 3/22/2018 Nasdaq Global Information Services Mutual Fund Quotation Service (MFQS) Batch Upload File Format Specification for MFQS Website Users 3/22/2018 Nasdaq Global Information Services 1 Overview... 3 2 Data Format Changes... 3 2.1 Introduction

More information

Nasdaq Fund Network (NFN) Batch Upload File Format Specification for NFN Website Users. 6/19/2018 Nasdaq Global Information Services

Nasdaq Fund Network (NFN) Batch Upload File Format Specification for NFN Website Users. 6/19/2018 Nasdaq Global Information Services Nasdaq Fund Network (NFN) Batch Upload File Format Specification for NFN Website Users 6/19/2018 Nasdaq Global Information Services 1 Overview... 3 2 Data Format Changes... 3 2.1 Introduction of NFN 0050

More information

Mutual Fund Quotation Service (MFQS) File Format Specification for MFQS FTP Server Users. 3/22/2018 Nasdaq Global Information Services

Mutual Fund Quotation Service (MFQS) File Format Specification for MFQS FTP Server Users. 3/22/2018 Nasdaq Global Information Services Mutual Fund Quotation Service (MFQS) File Format Specification for MFQS FTP Server Users 3/22/2018 Nasdaq Global Information Services 1 MFQS FTP Server Information... 4 1.1 Overview... 4 1.2 FTPS Server

More information

MFQS WEBSITE USER GUIDE (VERSION )

MFQS WEBSITE USER GUIDE (VERSION ) MFQS WEBSITE USER GUIDE (VERSION 2017-2) TABLE OF CONTENTS INTRODUCTION... 3 Overview... 3 Upcoming Releases... 3 Recent Releases... 3 Sign Up Process... 4 Issuers, Administrators and Pricing Agents...

More information

Nasdaq Fund Network Data Service

Nasdaq Fund Network Data Service Nasdaq Fund Network Data Service Version: 2018-3 Revised: May 22, 2018 Distributed by: Nasdaq Global Information Services 805 King Farm Boulevard, Suite 200 Rockville, MD 20850 Phone: +1 301 978 5307 E-mails:

More information

MFQS Access Options In June of 2005, NASDAQ OMX discontinued the PDN access option for MFQS. See MFQS News # for details.

MFQS Access Options In June of 2005, NASDAQ OMX discontinued the PDN access option for MFQS. See MFQS News # for details. The Mutual Fund Quotation Service (MFQS) User Guide was originally published in 2001. While the instructions on how to use the MFQS website to submit price data are still accurate, some of the operation

More information

BZX Exchange US Listings Corporate Actions Specification

BZX Exchange US Listings Corporate Actions Specification BZX Exchange US Listings Corporate Actions Specification Version 1.0.12 October 17, 2017 Contents 1 Introduction... 3 1.1 Daily Listed Securities Report Overview... 3 1.2 Daily Distributions Report Overview...

More information

NLS Plus. Version 2.1

NLS Plus. Version 2.1 NLS Plus Version 2.1 A trade-by-trade data feed with Nasdaq, Nasdaq BX and Nasdaq PSX transactions and consolidated volume information for U.S. exchange-listed equities Page 1 Table of Contents 1 Product

More information

Margin Direct User Guide

Margin Direct User Guide Version 2.0 xx August 2016 Legal Notices No part of this document may be copied, reproduced or translated without the prior written consent of ION Trading UK Limited. ION Trading UK Limited 2016. All Rights

More information

Nasdaq Daily List File Format and Specifications

Nasdaq Daily List File Format and Specifications Nasdaq Daily List File Format and Specifications Introduction This specifications document outlines the file format for the Nasdaq Equities, Dividends, Mutual Funds and Next Day X-Date Daily Lists. Please

More information

Dartmouth College. Fundriver Training. For. Development and Stewardship Staff

Dartmouth College. Fundriver Training. For. Development and Stewardship Staff Dartmouth College Fundriver Training For Development and Stewardship Staff For Development and Stewardship Staff I N D E X What is Fundriver... 1 Accessing Fundriver... 1 Signing In... 3 Information on

More information

NASDAQ OMX BX Last Sale

NASDAQ OMX BX Last Sale NASDAQ OMX BX Last Sale For BX Trading Venue and BX Listing Market NASDAQ OMX Global Data Products 805 Kind Farm Blvd Rockville, MD 20850 +1 301 978 5307 11/1/2013 1 Overview 1.1 Product Description BX

More information

NASDAQ OMX PSX Last Sale

NASDAQ OMX PSX Last Sale NASDAQ OMX PSX Last Sale For PSX Trading Venue NASDAQ OMX Global Data Products 11/1/2013 1 Overview PSX Last Sale SM (PLS) is a direct data feed product offered by NASDAQ OMX to support the PSX Trading

More information

NASDAQ Last Sale (NLS)

NASDAQ Last Sale (NLS) NASDAQ Last Sale (NLS) Direct Data Feed Interface Specification Version: 1.00 Date Revised: July 2, 2010 Table of Contents 1 Product Description:... 3 2 Network Protocol Options... 3 3 Architecture...

More information

Certifying Mortgages for Freddie Mac. User Guide

Certifying Mortgages for Freddie Mac. User Guide Certifying Mortgages for Freddie Mac User Guide December 2017 The Freddie Mac Single-Family Seller/Servicer (Guide) requires a Seller/Servicer selling Mortgages to Freddie Mac to forward the Notes, assignments

More information

NASDAQ OMX PSX Best Bid and Offer

NASDAQ OMX PSX Best Bid and Offer NASDAQ OMX PSX Best Bid and Offer For PSX Trading Venue NASDAQ OMX Global Data Products 7/10/2013 VERSION 2.0 7/10/2013 1 PSX Best Bid and Offer (PSX BBO) 1 Overview 1.1 Product Description PSX Best Bid

More information

NASDAQ OMX BX Best Bid and Offer

NASDAQ OMX BX Best Bid and Offer NASDAQ OMX BX Best Bid and Offer For BX Trading Venue and BX Listing Market NASDAQ OMX Global Data Products 9600 Blackwell Road, Suite 500 Rockville, MD 20850 +1 301 978 5307 12/03/2009 VERSION 1.0 7/2/2010

More information

Cboe End-of-Day ETP Key Values Feed Specification. Version 1.0.3

Cboe End-of-Day ETP Key Values Feed Specification. Version 1.0.3 Cboe End-of-Day ETP Key Values Feed Specification Version 1.0.3 June 15, 2018 Contents 1 Introduction... 3 2 Protocol... 4 2.1 Format... 4 2.2 Availability... 4 2.3 File Name... 4 3 File Layout and Field

More information

NASDAQ Best Bid and Offer (QBBO) Version 2.0

NASDAQ Best Bid and Offer (QBBO) Version 2.0 NASDAQ Best Bid and Offer (QBBO) Version 2.0 Distributed by: NASDAQ OMX Global Data Products 805 King Farm Blvd Rockville, MD 20850 U.S.A. +1 301 978 5307 1 Product Description NASDAQ Best Bid and Offer

More information

Reference Guide Business Online Banking

Reference Guide Business Online Banking Reference Guide Business Online Banking Contents Page 3 Getting Started Page 5 UK Payments Page 8 Internal Transfers Page 9 Balances & Transactions Page 11 Statements & Reports Page 12 Cheque Management

More information

Plan Sponsor User Guide

Plan Sponsor User Guide Plan Sponsor User Guide Getting Started with PensionEdge Plus This guide is designed to provide you with a quick understanding of the many features of the PensionEdge Plus portal. The portal allows you

More information

Nasdaq Net Order Imbalance SnapShot (NOIS) Version 2.20

Nasdaq Net Order Imbalance SnapShot (NOIS) Version 2.20 1. Overview Nasdaq Net Order Imbalance SnapShot (NOIS) Version 2.20 Nasdaq Net Order Imbalance SnapShot (NOIS) is a direct data feed product offered by The Nasdaq Stock Market. NOIS is being released in

More information

NASDAQ OMX Global Index Data Service SM

NASDAQ OMX Global Index Data Service SM NASDAQ OMX Global Index Data Service SM Version: 2009-2 Revised: September 25, 2009 Distributed by: NASDAQ OMX Global Data Products 9600 Blackwell Road, Suite 500 Rockville, MD 20850, USA Phone: +1 301

More information

Trading. The screens shown are for illustration purposes only. Streetscape, mystreetscape, and BondTraderPro are registered trademarks of FMR Corp.

Trading. The screens shown are for illustration purposes only. Streetscape, mystreetscape, and BondTraderPro are registered trademarks of FMR Corp. Introduction... 1 Accessing Trading Functions... 2 Selecting Accounts... 2 Using Order Lists... 3 Entering an Equity Order... 5 Optional Fields on the Equity Order Ticket... 7 Entering a Mutual Fund Order...

More information

FINRA ADDS FINRA Automated Data Delivery System User Guide

FINRA ADDS FINRA Automated Data Delivery System User Guide FINRA ADDS FINRA Automated Data Delivery System User Guide Version 14 Updated January 2018 Table of Contents Overview... 4 Access... 4 Web Access... 4 Trade Journals... 4 Tick Size Pilot Firm Review Files...

More information

Regulatory Notice. MSRB Documents System Hours in EMMA System, RTRS and SHORT System Information Facilities

Regulatory Notice. MSRB Documents System Hours in EMMA System, RTRS and SHORT System Information Facilities Regulatory Notice 0 2015-11 Publication Date July 23, 2015 Stakeholders Municipal Securities Dealers, Municipal Advisors, Issuers, Investors, General Public Notice Type Regulatory Announcement Category

More information

HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE

HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE HEALTH SAVINGS ACCOUNT (HSA) INVESTMENT PORTAL GUIDE Table of Contents HOME PAGE... 3 Menu Bar... 3 Welcome to your HSA Investment Account... 3 Your Investment Portfolio... 3 Your Investment Elections:...

More information

Merchant Reporting Tool

Merchant Reporting Tool Merchant Reporting Tool payment and transaction statistic for web shops Transaction reports through web-interface to paysafecard application Table of Content 1. Introduction 2 2. Log In 2 2.1 Merchant

More information

Pension Schemes Online Guide

Pension Schemes Online Guide Pension Schemes Online Guide taking care of you... Contents How do I log on? What is my dashboard? How do I view my contributions history? How do I find out the value of my fund? What is my contribution

More information

Global Liquidity Fund service user guide

Global Liquidity Fund service user guide Global Liquidity Fund service user guide Contents Page 1 Welcome 1 2 Using the Global Liquidity Fund service for the first time 2 3 Account maintenance 4 4 Investment Reports 7 5 Create New Investment

More information

Nasdaq Options GLIMPSE

Nasdaq Options GLIMPSE Market Data Feed Version 3.2 Nasdaq Options GLIMPSE 1. Overview A complement to the Nasdaq Options ITCH to Trade Options (ITTO) real-time data feed product, Nasdaq Options GLIMPSE 3.0 is a point-to-point

More information

User Guide October, Payment Manager Elavon Features Working with Transend Pay RAs

User Guide October, Payment Manager Elavon Features Working with Transend Pay RAs User Guide October, 2014 Payment Manager Elavon Features Working with Transend Pay RAs Contents 1 Working with TRANSEND PAY Remittance Advices in Payment Manager 3 1.1 LOGIN TO PAYMENT MANAGER 3 1.2 FIND

More information

NASDAQ OPTIONS GLIMPSE INTERFACE SPECIFICATIONS. Market Data Feed Version 1.2 BX OPTIONS GLIMPSE

NASDAQ OPTIONS GLIMPSE INTERFACE SPECIFICATIONS. Market Data Feed Version 1.2 BX OPTIONS GLIMPSE Market Data Feed Version 1.2 BX OPTIONS GLIMPSE 1. Overview A complement to the Nasdaq BX Options Depth of Market (BX Depth) real-time data feed product, Nasdaq BX Options GLIMPSE (BX GLIMPSE) is a point-to-point

More information

BX GLIMPSE 3.1. All numeric fields are composed of a string of ASCII coded digits, right justified and space filled on the left.

BX GLIMPSE 3.1. All numeric fields are composed of a string of ASCII coded digits, right justified and space filled on the left. BX GLIMPSE 3.1 Note: This version of the BX GLIMPSE service is designed to support symbols up to six characters only. As noted in Data Technical News #2010-3, NASDAQ OMX is releasing new versions of the

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Trade Finance Guide TradeFinanceNewClientsV2Sept15 Contents Introduction 3 Welcome to your introduction to Client Online 3 If you have any questions 3 Logging In 4 Welcome

More information

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation.

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. February 2018 2018 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. Contents

More information

Plan Access ABA-RF Guide

Plan Access ABA-RF Guide Plan Access ABA-RF Guide September 1, 2014 Copyright Copyright 2009, 2014 Voya Institutional Plan Services, LLC All rights reserved. No part of this work may be produced or used i4 any form or by any means

More information

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation.

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. Allocation Fund Investment Manager Getting Started Guide February 2018 2018 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and

More information

Securities Lending Reporting. Submitting Borrowed, Loaned and Committed Securities information via ASX Online

Securities Lending Reporting. Submitting Borrowed, Loaned and Committed Securities information via ASX Online Submitting Borrowed, Loaned and Committed Securities information via ASX Online USER NOTES MAY 2016 CONTENTS Overview This guide gives an overview of the securities lending reporting facility to Participants

More information

Reference Guide Business Online Banking

Reference Guide Business Online Banking Reference Guide Business Online Banking Welcome to safer internet banking Security As online fraud becomes more sophisticated, our security measures need to advance to combat these crimes. The secure token

More information

Cboe End-of-Day ETP Key Values Feed Specification. Version 1.0.1

Cboe End-of-Day ETP Key Values Feed Specification. Version 1.0.1 Cboe End-of-Day ETP Key Values Feed Specification Version 1.0.1 October 17, 2017 Contents 1 Introduction... 3 2 Protocol... 4 2.1 Format... 4 2.2 Availability... 4 2.3 File Name... 4 3 File Layout and

More information

emerchantview Service July 23, 2010

emerchantview Service July 23, 2010 emerchantview Service July 23, 2010 2010 FIRST DATA CORPORATION All Rights Reserved. Printed in U.S.A. This document contains confidential and proprietary information of First Data Corporation. You may

More information

Net Order Imbalance Indicator Support Document

Net Order Imbalance Indicator Support Document Net Order Imbalance Indicator Support Document The Net Order Imbalance Indicator (NOII) can have a positive impact on a trader s ability to perform effectively in a highly competitive environment. This

More information

NASDAQ OpenView Basic SM. Data Feed Interface Specifications Version c Updated: September 12, 2006

NASDAQ OpenView Basic SM. Data Feed Interface Specifications Version c Updated: September 12, 2006 NASDAQ OpenView Basic SM Data Feed Interface Specifications Version 2006-1c Updated: September 12, 2006 Table of Contents 1 Introduction...1 1.1 Product Background...1 1.2 OpenView Basic Product Description...2

More information

PHLX GLIMPSE INTERFACE SPECIFICATIONS. Version 1.5 PHLX GLIMPSE

PHLX GLIMPSE INTERFACE SPECIFICATIONS. Version 1.5 PHLX GLIMPSE Version 1.5 PHLX GLIMPSE 1. Overview A complement to the PHLX Depth real-time data feed product on Nasdaq PHLX SM (referred as PHLX ) PHLX GLIMPSE is a point-to-point data feed connection that provides

More information

Managing Your HSA Advantage TM Investments Online

Managing Your HSA Advantage TM Investments Online Managing Your HSA Advantage TM Investments Online WWW.CHARD-SNYDER.COM Getting Started Once you have accrued $4,000 in your HSA Advantage TM account, you may choose to invest the money that exceeds that

More information

Budget Process Tools: CalPlanning Reporting FY

Budget Process Tools: CalPlanning Reporting FY Budget Process Tools: CalPlanning Reporting FY2018 19 CalPlan CalRptg HCPRptg Smart View HCP (Human Capital Planning) 1 FY2018 19 Budget Process Tool Training & Roles 2 CalPlanning Roles CalRptg & HCPRptg

More information

International Securities Identification Numbers

International Securities Identification Numbers International Securities Identification Numbers Removing the ASX Code Implementation Brief (Revised) 20 October 2017 International Securities Identification Numbers 1/13 Contacts For general enquiries,

More information

Spreadsheet File Transfer User Guide. FR 2028B Survey of Terms of Bank Lending to Farmers

Spreadsheet File Transfer User Guide. FR 2028B Survey of Terms of Bank Lending to Farmers Spreadsheet File Transfer User Guide FR 2028B Survey of Terms of Bank Lending to Farmers FR 2028S Prime Rate Supplement to Survey of Terms of Lending STATISTICS FUNCTION AUTOMATION SUPPORT October 30,

More information

ELECTRONIC BILL PAYMENT OVERVIEW

ELECTRONIC BILL PAYMENT OVERVIEW ELECTRONIC BILL PAYMENT Our online electronic bill payment system allows you to pay bills through our secure Internet server. You may schedule a payment; schedule recurring payments to be issued automatically;

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS PENSIONS INVESTMENTS LIFE INSURANCE FREQUENTLY ASKED QUESTIONS SELF-INVESTED FUND EXECUTION-ONLY TRADING ACCOUNT Table of Contents 1. Introduction 2. How do I login to the Execution-Only Trading Account

More information

Participant Website Guide

Participant Website Guide Participant Website Guide Accessing Your Account... p 1 Online Enrollment... p 2 Summary... p 3 My Portfolio... p 5 Contributions... p 6 Loans & Withdrawals... p 7 Statements & Transactions... p 8 Plan

More information

OTC Markets Promotion Data File Specification

OTC Markets Promotion Data File Specification OTC Markets Promotion Data File Specification Version 1.0 March 2018 OTC Markets Promotion Data Specification Change history Date Version Description 3/2018 1.0 Initial Version 3/2018 2 Version 1.0 OTC

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS PENSIONS INVESTMENTS LIFE INSURANCE FREQUENTLY ASKED QUESTIONS SELF-INVESTED FUND EXECUTION-ONLY TRADING ACCOUNT 1 Execution-Only Trading Account Frequently Asked Questions TABLE OF CONTENTS Introduction

More information

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation.

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. Multiple Funds Investment Manager Getting Started Guide May 2017 2017 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and are not

More information

EMMS REALLOCATIONS USER INTERFACE GUIDE

EMMS REALLOCATIONS USER INTERFACE GUIDE EMMS REALLOCATIONS USER INTERFACE GUIDE VERSION: 3.05 DOCUMENT REF: PREPARED BY: MMSTDPD167 Information Management and Technology (IMT) DATE: 15 April 2011 Final Copyright Copyright 2011 Australian Energy

More information

Trade Data Dissemination Service 2.0 (TDDS 2.0)

Trade Data Dissemination Service 2.0 (TDDS 2.0) Trade Data Dissemination Service 2.0 (TDDS 2.0) Data Feed Interface Specification Version Number: 9.0A Revised: June 16, 2017 Managed and Published by: Financial Industry Regulatory Authority (FINRA) Product

More information

NASDAQ Daily List File Format and Specifications

NASDAQ Daily List File Format and Specifications NASDAQ Daily List File Format and Specifications Introduction This specifications document outlines the file format for the NASDAQ Equities, Dividends, Mutual Funds and Next Day X-Date Daily Lists. Please

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Bibby Factors International Guide 1 InternationalFactoringNewClientBibbyUKopsSept15 Introduction 3 Logging In 5 Welcome Screen 6 Navigation 7 Viewing Your Account 9 Invoice

More information

SPAN for ICE SPAN Array File Formats for Energy Products

SPAN for ICE SPAN Array File Formats for Energy Products SPAN for ICE SPAN Array File Formats for Energy Products Version 2.3 21 April 2011 1 Introduction... 3 2 General... 4 3 Processing the Enhanced Record Types in SPAN for ICE... 8 4 Record Formats - CSV...

More information

CONTRIBUTION GUIDELINES & ELECTRONIC SPECIFICATIONS

CONTRIBUTION GUIDELINES & ELECTRONIC SPECIFICATIONS CONTRIBUTION GUIDELINES & ELECTRONIC SPECIFICATIONS This section discusses where and how to send contributions. We do not limit the number or frequency of contributions you may submit. Certain contracts

More information

NASDAQ OMX Nordic and Baltic markets update 2. New OMRX indexes due to Kommuninvest s Benchmark program in GCF on October 29th,

NASDAQ OMX Nordic and Baltic markets update 2. New OMRX indexes due to Kommuninvest s Benchmark program in GCF on October 29th, Global Data Products NORDIC WEEKLY NEWSLETTER CONTENTS October 19th 2010 #35 NASDAQ OMX Nordic and Baltic markets update 2 Page New OMRX indexes due to Kommuninvest s Benchmark program in GCF on October

More information

TRAQS OTC Reporting Facility (ORF ) USER GUIDE

TRAQS OTC Reporting Facility (ORF ) USER GUIDE TRAQS OTC Reporting Facility (ORF ) USER GUIDE REFERENCE MANUAL DECEMBER 14, 2015 VERSION 1.2A The information contained herein may not be copied, retransmitted, disseminated, distributed, sold, resold,

More information

ISE, GEMX, & MRX Trade Feed Specification VERSION JUNE 13, 2017

ISE, GEMX, & MRX Trade Feed Specification VERSION JUNE 13, 2017 ISE, GEMX, & MRX Trade Feed Specification VERSION 1.0.1 JUNE 13, 2017 Nasdaq ISE/Nasdaq GEMX/Nasdaq MRX Trade Feed Table of Contents 1. Overview 3 2. Architecture 4 3. Data Types 4 4. Message Formats 5

More information

Managing Your HSA Advantage TM Investments Online

Managing Your HSA Advantage TM Investments Online Managing Your HSA Advantage TM Investments Online WWW.CHARD-SNYDER.COM Getting Started Your HSA Advantage account features an investment threshold. Once you have accrued enough money in your HSA Advantage

More information

Dear Client, We appreciate your business!

Dear Client, We appreciate your business! FTJ FundChoice Website Guide Page 1 Dear Client, Thank you for choosing FTJ FundChoice. This guide will assist you in managing your online account at: www.portfoliologin.com. In keeping with our mission

More information

Alternative Trading System (ATS) Transparency. Data Website User Guide July 13, Version 3

Alternative Trading System (ATS) Transparency. Data Website User Guide July 13, Version 3 Alternative Trading System (ATS) Transparency Data Website User Guide July 13, 2015 Version 3 This ATS Transparency Data Website User Guide is being made available for informational purposes only. It is

More information

Morningstar Office Academy Day 4: Research and Workspace

Morningstar Office Academy Day 4: Research and Workspace Morningstar Office Academy Day 4: Research and Workspace - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 Lesson 1: Modifying Research Settings.......................................

More information

Financial Institution IOLTA Account Manual

Financial Institution IOLTA Account Manual Financial Institution IOLTA Account Manual June 2014 Wisconsin Trust Account Foundation, Inc. 825 Williamson Street, Suite A Madison, WI 53703 608.257.6845 877.749.5045 (phone) 608.257.2684 877.223.7377

More information

Nasdaq Options GLIMPSE

Nasdaq Options GLIMPSE Nasdaq Options GLIMPSE Market Data Feed Version 4.00 Nasdaq Options GLIMPSE 1. Overview A complement to the NASDAQ Options ITCH to Trade Options (ITTO) real-time data feed product, NASDAQ Options GLIMPSE

More information

Maryland Competitive Gas Supply Process and Transaction Standards Manual

Maryland Competitive Gas Supply Process and Transaction Standards Manual Maryland Competitive Gas Supply Process and Transaction Standards Manual COMAR 20.59 By Order of the Public Service Commission of Maryland (cite to Order Accepting final Document) Prepared by the: Maryland

More information

OTC Markets Compliance Analytics Product Specification

OTC Markets Compliance Analytics Product Specification OTC Markets Compliance Analytics Product Specification Version 1.7 November 2017 OTC Markets Compliance Analytics Specification Change history Date Version Description 11/2017 1.7 Amendment of OTC Tier

More information

To assist recordkeepers in this task, Mid Atlantic has developed the Investment Toolkit. The Toolkit provides the following services:

To assist recordkeepers in this task, Mid Atlantic has developed the Investment Toolkit. The Toolkit provides the following services: Overview The new fee disclosure rules have created new responsibilities for plan sponsors and plan service providers. While overall, these new rules should help even the playing field for unbundled or

More information

CMS Web User s Guide. Nasdaq Nordic. Version:

CMS Web User s Guide. Nasdaq Nordic. Version: CMS Web User s Guide Nasdaq Nordic Version: 4.0.130911. Contents 1 Introduction... 4 1.1 Overview... 4 1.2 How to access CMS Web... 4 1.3 User roles... 5 1.3.1 User... 5 1.3.2 Administrator... 5 1.4 Accounts...

More information

PERSHING STANDARD FILE LAYOUTS

PERSHING STANDARD FILE LAYOUTS FILE LAYOUT FOR: Intraday-GLOBAL CUSTOMER POSITION GENERAL INFORMATION File Frequency: Daily Record Size: 750 characters Form Name: (Intraday) DESCRIPTION The Intraday Global Customer Position file ()

More information

Bulk Data Download Step-by-Step User Guide & Information

Bulk Data Download Step-by-Step User Guide & Information Step-by-Step User Guide & Information The information in this guide is for qualified advisers only and must not be relied on by anyone else. The contents of the screens in this guide represent the screens

More information

Version Updated: December 20, 2017

Version Updated: December 20, 2017 Version 1.05 Updated: December 20, 2017 Copyright 201 Exchange LLC. All rights reserved. This document may not be modified, reproduced, or redistributed without the written permission of IEX Group, Inc.

More information

Glimpse for Best of Nasdaq Options (BONO)

Glimpse for Best of Nasdaq Options (BONO) S Market Data Feed Version 1.1 Glimpse for Best of Nasdaq Options (BONO) 1. Overview A complement to the Best of Nasdaq Options (BONO) real-time data feed products, Glimpse for Best of Nasdaq Options (BONO)

More information

Introduction to Client Online

Introduction to Client Online Introduction to Client Online Construction Finance Guide ConstructionFinanceNewClientsV2Sept15 Contents Introduction 3 Welcome to your introduction to Client Online 3 If you have any questions 3 Logging

More information

Multifamily Securities Investor Access Desk Reference Manual

Multifamily Securities Investor Access Desk Reference Manual Multifamily Securities Investor Access Manual February 2013 Contents 1 Application Overview... 3 2 Minimum Browser Requirements... 3 3 Contacting Investor Access Tool Administrator... 3 4 Accessing and

More information

OTC Bulk File Load. User Guide February 2017 Version 1.1

OTC Bulk File Load. User Guide February 2017 Version 1.1 OTC Bulk File Load User Guide 12 1 February 2017 Version 1.1 CONTENTS 1. Introduction... 3 1.1 Document Purpose... 3 1.2 Intended Audience... 3 1.3 Document History... 3 2. Overview... 4 3. File Creation...

More information

EDGA & EDGX STOCK EXCHANGES

EDGA & EDGX STOCK EXCHANGES EDGA & EDGX STOCK EXCHANGES Regulatory Information Circular Circular Number: 2010-168 Contact: Jeff Rosenstrock Date: July 14, 2010 Telephone: (201) 942-8295 Subject: ishares Silver Trust Background Information

More information

BUDGET IMPORT TEMPLATE

BUDGET IMPORT TEMPLATE BUDGET IMPORT TEMPLATE This video will explain and show how to import budget journals in PeopleSoft using the Excel template. Importing will allow you to easily and quickly create budget transfers and

More information

VOLUME SUMMARY CLIENT SPECIFICATION

VOLUME SUMMARY CLIENT SPECIFICATION Document title VOLUME SUMMARY CLIENT SPECIFICATION NYSE VOLUME SUMMARY NYSE AMERICAN* VOLUME SUMMARY NYSE ARCA VOLUME SUMMARY Version Date 1.0a May 22, 2017 * The name change from NYSE MKT to NYSE American

More information

Investor Center User Guide

Investor Center User Guide CONTENTS Overview...3 Getting Started...9 How to Register...4 Portfolio... 10 Dividends and Payments... 14 Transaction History... 16 Statements and Documents... 18 Company Research... 19 My Profile...20

More information

International Securities Identification Numbers

International Securities Identification Numbers International Securities Identification Numbers Removing the ASX Code Implementation Brief 13 September 2017 International Securities Identification Numbers 1/12 Contacts For general enquiries, please

More information

Nasdaq Best Bid and Offer (QBBO) Version 2.1

Nasdaq Best Bid and Offer (QBBO) Version 2.1 Nasdaq Best Bid and Offer (QBBO) Version 2.1 1 Overview 1.1 Product Description Nasdaq Best Bid and Offer (QBBO) is a direct data feed product offered by The Nasdaq Stock Market, LLC. QBBO provides the

More information

Adviser Guide: MPPM Website Accessing client portfolios & resources pages

Adviser Guide: MPPM Website Accessing client portfolios & resources pages Macquarie Private Portfolio Management Adviser Guide: MPPM Website Accessing client portfolios & resources pages Prepared: September 2012 Contact: Ph: 1800 501 180 Email: mppm@macquarie.com Landing Page

More information

FIX Specification for MarketData (FIX BookFeed) Programming Reference. Version 3.3

FIX Specification for MarketData (FIX BookFeed) Programming Reference. Version 3.3 FIX Specification for MarketData (FIX BookFeed) Programming Reference Version 3.3 Disclaimer All data concerning Cboe FX s FIX specification is provided solely for informational purposes to help authorized

More information

CONNEXOR Terms for Data Vendors

CONNEXOR Terms for Data Vendors CONNEXOR Terms for Data Vendors CONNEXOR Terms delivers a comprehensive set of reference data with a wide range of high-quality information across the entire life cycle of financial instruments. The receiver

More information

1 Overview Architecture Data Types Message Formats Snapshot Message... 9

1 Overview Architecture Data Types Message Formats Snapshot Message... 9 asdaq GLIMPSE 5.0 Table of Contents 1 Overview... 2 2 Architecture... 2 3 Data Types... 2 4 Message Formats... 2 4.1 System Event Message... 3 4.2 Add Order Message... 3 4.3 Stock Directory... 5 4.4 Stock

More information

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation.

Any symbols displayed within these pages are for illustrative purposes only, and are not intended to portray any recommendation. Fully Disclosed Brokers Getting Started Guide October 2017 2017 Interactive Brokers LLC. All Rights Reserved Any symbols displayed within these pages are for illustrative purposes only, and are not intended

More information

OTC Markets Compliance Data File Specification

OTC Markets Compliance Data File Specification OTC Markets Compliance Data File Specification Version 1.7 July 2017 OTC Markets Compliance Data File Specification Change history Date Version Description 4/2014 1.0 Initial Version 5/2014 1.1 Added 2

More information

U.S. Coast Guard. User Guide Command Role Travel Charge Card Tracking, Technology Refresh Sub-Project

U.S. Coast Guard. User Guide Command Role Travel Charge Card Tracking, Technology Refresh Sub-Project U.S. Coast Guard User Guide Command Role 36555 Travel Charge Card Tracking, Technology Refresh Sub-Project Prepared by Commandant (CG-631) U.S. Coast Guard 1900 Half Street, SW Washington, DC 20593-0001

More information

Participant User Guide

Participant User Guide Participant User Guide Introduction planwithease.com is an online administrative system that helps Plan Sponsors (generally your employer) manage their 403(b) and/or 457 plans in accordance with the Internal

More information

CitiDirect Online Banking. Citi Trade Portal. User Guide for: Trade Loan

CitiDirect Online Banking. Citi Trade Portal. User Guide for: Trade Loan CitiDirect Online Banking Citi Trade Portal User Guide for: Trade Loan InfoTrade tel. 0 801 258 369 infotrade@citi.com CitiDirect Technical Assistance tel. 0 801 343 978, +48 (22) 690 15 21 Monday through

More information

COST BASIS REPORTING SERVICE CBRS TAX LOT INPUT (T)

COST BASIS REPORTING SERVICE CBRS TAX LOT INPUT (T) COST BASIS REPORTING SERVICE CBRS TAX LOT INPUT (T) VERSION 1.0 JULY 31, 2017 Copyright 2017 by The Depository Trust & Clearing Corporation ( DTCC ). All rights reserved. This work (including, without

More information