using sampleMACrossover strategy
I changed the Parameters Category from
[GridCategory("Parameters")] to [Category("Parameters")]
from other code I access the Edit Strategy Dialog and I use PropertyGrid.SelectedObject.Parameters.
This is the list of parameters for the strategy and there are 2 , fast and slow.
Using The "GridCategory", 2 parameters are correctly in the list.
Using "Category" however the parameters are listed double, hence I see 4 parameters, 2 with name Fast and 2 with name Slow.
It seems that your code lists the parameters two times, one time for the category "Category" and a second time for a categry "GridCategory" which seems to be generated internally.
Is this expected behaviour?
Andreas
Then in Strategy.Parameters I get

Comment