C#: Query Liberator for stats as JSON Result

Setting the “stats” argument to “total” will tell the query to return a json result containing the count per symbol.

Example Query for Stats

var res = liberator.query(new Dictionary<string, dynamic>() {
                    {"name","daily_bars" },
                    { "as_of","2021-04-10" },
                    { "back_to","2021-03-10"},
                    { "symbols","ES"},
                    { "stats","total"}
                    });
 Console.WriteLine(JsonDocumentToIndentedString(res));