Hi,

There is a resoltuion setting in UniverseSettings. Is it really applied to the CoarseFundamental type?.

The doc says : Yesterday close price

class CoarseFundamental {
public long Volume; // Traded shares
public decimal DollarVolume; // Traded shares x Price
public decimal Price; // Yesterday close price
public Symbol Symbol; // Asset symbol
public bool HasFundamentalData; // Whether it has fundamental
}

I would like ti know if the price is the current price in Minute resolution or always the close price.If the price is the current price can a Close property be added for the close price?

Thanks

Author