Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
TimePicker
Collapse
X
-
Hello, thanks for writing in. This is not documented, but you can use a time picker with these type converters:
With Seconds:Code:[NinjaScriptProperty] [XmlIgnore()] [PropertyEditor("NinjaTrader.Gui.Tools.TimeEditorKey")] [Display(Name = "MyTime")] public DateTime MyTime { get; set; }
Kind regards,Code:[NinjaScriptProperty] [XmlIgnore()] [PropertyEditor("NinjaTrader.Gui.Tools.AutoCloseTimeEditorKey")] [Display(Name = "MyTime")] public DateTime MyTime { get; set; }
-ChrisL
-
Hello, thanks for the follow-up. You will initialize this variable in State.SetDefaults, but you can not use Time[0] in a non data driven event, especially if data has not loaded yet. You would want to either use DateTime.Now.Year, DateTime.Now.Month and so on to get the system time or call this in OnBarUpdate.
Comment
-
ok thanks, if I use State.SetDefault, it compiles of but no longer appears on the chart strategy selection list so.
I'll use OnBarUpdate with if (CurrentBar == 0)
i'm just trying to initilialize time1 property to 09:15 to it shows up in the UI as 09:30.
[NinjaScriptProperty]
[PropertyEditor("NinjaTrader.Gui.Tools.TimeEditorKe y")]
[Display(ResourceType = typeof(Custom.Resource), Name = "time1", GroupName = "Trading", Order = 1)]
public DateTime time1
{ get; set; }
Last edited by dibDab; 02-15-2023, 09:07 AM.
Comment
-
There are several (undocumented) property editor tools that are very useful when selecting DateTime or TimeSpan properties, including:- NinjaTrader.Gui.Tools.AutoCloseTimeEditorKey
- NinjaTrader.Gui.Tools.ChartAnchorTimeEditor
- NinjaTrader.Gui.Tools.DateTimeConverter
- NinjaTrader.Gui.Tools.TimeEditorKey
How can any of these be included in a WPF Grid in an AddOn as a UIElement, to allow specification of DateTimes in a grid, not specifically as a property?
Thanks.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
652 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment