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)); }
public string LoadTradeFrom(string AFLT) { var url = string.Format("iss/engines/stock/markets/shares/securities/{0}/trades.json", AFLT); return(MoexDownloader.Load(url)); }
static string LoadSecutiryFrom(int start) { var url = string.Format("iss/securities.json?start={0}", start); return(MoexDownloader.Load(url)); }
public string LoadPriceFrom(int start) { var url = string.Format("iss/statistics/engines/stock/currentprices.json?start={0}", start); return(MoexDownloader.Load(url)); }
public string LoadSecutiryFrom(int start) { var url = "iss/engines/stock/markets/shares/boards/TQBR/securities.json"; return(MoexDownloader.Load(url)); }
public string LoadSecutiryFrom(string start) { var url = string.Format("iss/engines/stock/markets/shares/boards/TQBR/securities/{0}.json", start); return(MoexDownloader.Load(url)); }