private async Task <FundamentalFund> GetFundamentalFundFromResponseAsync(HttpResponseMessage response)
 {
     return(FundamentalFund.FromJson(await response.Content.ReadAsStringAsync()));
 }
 private FundamentalFund GetFundamentalFundFromResponse(HttpResponseMessage response)
 {
     return(FundamentalFund.FromJson(response.Content.ReadAsStringAsync().Result));
 }
 public static string ToJson(this FundamentalFund self) => JsonConvert.SerializeObject(self, EODHistoricalData.NET.ConverterFundamentalFund.Settings);