Is there a way to get user selected or typed time from the parameter dialog without explicitly parsing text?
[Description("")]
[GridCategory("Parameters -- Trade Windows")]
[Gui.Design.DisplayName ("000 Window A Start Time")]
public DateTime Win_a_start_time
{
get { return user__win_a_start_time; }
set { user__win_a_start_time = value; }
}

Comment