Click here to Skip to main content
15,892,674 members
Articles / Mobile Apps

Yahoo! Managed

Rate me:
Please Sign up or sign in to vote.
4.87/5 (56 votes)
8 Jan 2015Apache12 min read 527.8K   25.5K   262  
Download financial data, managing online portfolio or using Search BOSS from Yahoo! with .NET
// ******************************************************************************
// ** 
// **  Yahoo! Managed
// **  Written by Marius Häusler 2012
// **  It would be pleasant, if you contact me when you are using this code.
// **  Contact: YahooFinanceManaged@gmail.com
// **  Project Home: http://code.google.com/p/yahoo-finance-managed/
// **  
// ******************************************************************************
// **  
// **  Copyright 2012 Marius Häusler
// **  
// **  Licensed under the Apache License, Version 2.0 (the "License");
// **  you may not use this file except in compliance with the License.
// **  You may obtain a copy of the License at
// **  
// **    http://www.apache.org/licenses/LICENSE-2.0
// **  
// **  Unless required by applicable law or agreed to in writing, software
// **  distributed under the License is distributed on an "AS IS" BASIS,
// **  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// **  See the License for the specific language governing permissions and
// **  limitations under the License.
// ** 
// ******************************************************************************
using System;
using System.Collections.Generic;
using System.Text;


namespace MaasOne.Finance.YahooFinance.Support
{
    /// <summary>
    /// Stores information of an stock index. Implements IID.
    /// </summary>
    /// <remarks></remarks>
    public class YIndexID : YID
    {


        private bool mDownloadComponents = false;
        /// <summary>
        /// The Yahoo index ID
        /// </summary>
        /// <value></value>
        /// <returns></returns>
        /// <remarks></remarks>
        public override string ID
        {
            get
            {
                if (mDownloadComponents)
                {
                    return "@" + base.ID;
                }
                else
                {
                    return base.ID;
                }
            }
        }
        /// <summary>
        /// The overloaded type of the financial product 
        /// </summary>
        /// <value></value>
        /// <returns>Returns only [Index]. The type of an stock index is of course always [Index].</returns>
        /// <remarks></remarks>
        public override SecurityType Type
        {
            get { return SecurityType.Index; }
            set { base.Type = SecurityType.Index; }
        }
        /// <summary>
        /// Indicates whether the downloader will query all stocks of an index or not
        /// </summary>
        /// <value></value>
        /// <returns></returns>
        /// <remarks></remarks>
        public bool DownloadComponents
        {
            get { return mDownloadComponents; }
            set { mDownloadComponents = value; this.OnPropertyChanged("DownloadComponents"); }
        }

        protected YIndexID()
        {
        }
        /// <summary>
        /// Overloaded constructor
        /// </summary>
        /// <param name="id">The unmanaged ID</param>
        /// <remarks></remarks>
        public YIndexID(string id)
            : base(id)
        {
            base.Type = SecurityType.Index;
            mDownloadComponents = id.StartsWith("@");
        }
        /// <summary>
        /// Overloaded constructor
        /// </summary>
        /// <param name="id">The unmanaged ID</param>
        /// <param name="downloadComponents">True, if you want to download all components of the index</param>
        /// <remarks></remarks>
        public YIndexID(string id, bool downloadComponents)
            : this(id)
        {
            mDownloadComponents = downloadComponents;
        }
        /// <summary>
        /// Overloaded constructor
        /// </summary>
        /// <param name="searchResult">The downloaded search result with the values</param>
        /// <remarks></remarks>
        public YIndexID(IDSearchData searchResult)
            : base(searchResult)
        {
            if (!(searchResult.Type == SecurityType.Index))
            {
                throw new ArgumentException("The passed result is not an index", "result");
            }
        }

        /// <summary>
        /// Returns the full ID of the stock index.
        /// </summary>
        /// <returns></returns>
        /// <remarks></remarks>
        public override string ToString()
        {
            return this.ID;
        }

        /// <summary>
        /// Proves if a search result represents an index
        /// </summary>
        /// <param name="result"></param>
        /// <returns></returns>
        /// <remarks></remarks>
        public static bool IsValidSearchResult(IDSearchData result)
        {
            return result.Type == SecurityType.Index;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions