Ejemplo n.º 1
0
        public string LoadHistoriesFrom(string secId, string from, string till)
        {
            var url = string.Format("iss/history/engines/stock/markets/shares/boards/TQBR/securities/{0}.json?from={1}&till={2}", secId, from, till);

            return(MoexDownloader.Load(url));
        }
Ejemplo n.º 2
0
        public string LoadTradeFrom(string AFLT)
        {
            var url = string.Format("iss/engines/stock/markets/shares/securities/{0}/trades.json", AFLT);

            return(MoexDownloader.Load(url));
        }
Ejemplo n.º 3
0
        static string LoadSecutiryFrom(int start)
        {
            var url = string.Format("iss/securities.json?start={0}", start);

            return(MoexDownloader.Load(url));
        }
Ejemplo n.º 4
0
        public string LoadPriceFrom(int start)
        {
            var url = string.Format("iss/statistics/engines/stock/currentprices.json?start={0}", start);

            return(MoexDownloader.Load(url));
        }
Ejemplo n.º 5
0
        public string LoadSecutiryFrom(int start)
        {
            var url = "iss/engines/stock/markets/shares/boards/TQBR/securities.json";

            return(MoexDownloader.Load(url));
        }
Ejemplo n.º 6
0
        public string LoadSecutiryFrom(string start)
        {
            var url = string.Format("iss/engines/stock/markets/shares/boards/TQBR/securities/{0}.json", start);

            return(MoexDownloader.Load(url));
        }