[NinjaScriptProperty]
[Range(0, int.MaxValue)]
[Display(Name="ExtraTriggerPips", Description="Additional Pips (or ticks for futures) above/below trigger bar to enter", Order=4, GroupName="Parameters")]
public int ExtraTriggerPips
{ get; set; }
What I want to do is let the user enter a time in the format 07:30:58 (in other words, HH:MM:SS) and then I want to parse that internally.
How do I do this?

Comment