Hi,

Passing numerical search space for parameters to the optimization is very intuitive like below:

        {
            "name":"parameter_name",
            "min":30,
            "max":90,
            "step":30
        },

However, when it comes to non-numeric parameters such as strings (e.g, to be used to determine start and end dates of the backtest, `lean optimize` is unable to parse those.

I have tried passing them as if they were numeric (i.e. min and max being the same), passing them as a single element dictionary (i.e. name: value) but both of them failed. Is there a way to pass non-numeric or non-optimized parameters to LEAN local? 

{'start_date' : '2010-01-01'}
or
        {
            "name":"start_Date",
            "min":'2010-01-01',
            "max":'2010-01-01'
         
        }