Example:
01. public int SMAPeriod { get; set; }
02. public int WMAPeriod { get; set; }
03. public int EMAPeriod { get; set; }
Instead of the properties being organized alphabetically
public int EMAPeriod { get; set; }
public int SMAPeriod { get; set; }
public int WMAPeriod { get; set; }

Comment