Hi, new to Quantconnect and looking for some basic help getting started.  

I'm having a lot of difficulty finding a detailed object reference for all QCAlgorithm classes.

For example, I'm trying to create a custom Universe selection using the CoarseFundamental class implementing a filter based on the CoarseFundamental Market property, and I can't find a reference for the values of the properties:

From:

 class CoarseFundamental {
    // Gets the market for this symbol 
    string Market;

            var stocks = (from c in coarse                 where c.DollarVolume > 10000000 &&                  c.Price > 10 &&                 c.HasFundamentalData                 //&& c.Market != "..."                 orderby c.DollarVolume descending                 select c.Symbol).Take(10).ToList();             return stocks;

Is this information available in the QuantConnect documentation anywhere or can anyone recommend a reference source for sample code?  Searching for this stuff through google is not helping and the basic learning curve seems to be taking way longer than it should.

Thanks in advance.