Topic: "ForexStrategyBuilder.exe.config" wrong parameter for GC

Hi Mr Popov,

I noticed that in the "ForexStrategyBuilder.exe.config" you want to specify that .NET should use concurrent garbage collection, but you use the wrong parameter for it. You use:

<gcConcurrency enabled="true" />

This parameter doesn´t exist in .NET at all. The right one is:

<gcConcurrent enabled="true"/>

See: https://msdn.microsoft.com/en-us/library/yhwwzef8(v=vs.110).aspx

Re: "ForexStrategyBuilder.exe.config" wrong parameter for GC

You are right. I'll fix it.