Print(string.Format("{0}:{1},{2},{3},{4}", Instrument.FullName, DateTime.Now, MA1_LEN, MA2_LEN, ***FITNESS VALUE***));
to print the fitness value together with my strategy inputs when I optimize.
And where should I place the print statement? I tried the Dispose() method but noticed that it executes more that once each time the strategy is evaluated.
Thanks

Comment