Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Time as a Parameter.
Collapse
X
-
Time as a Parameter.
The sample strat 'SampleTimeFilter' shows how a strat may be constrained to trade at desirable times. I would like to make the Start and Finish times parameters of the strat. It would be easy to use int's (they appear in the sample) but this would not be very neat, especialy as leading zreos are suppressed. Does anyone know of a proper way to represent a time as a parameter?Tags: None
-
You would need to use TimeSpan variables if you want to specify Start and End times exactly. More usually, I would use a TimeSpan variable for the Start time, and a double for a duration, then use the duration to internally calculate the End time using DateTime variables. That is the cleanest way to determine the End time if the trading session will cross midnight.Originally posted by DaveS View PostThe sample strat 'SampleTimeFilter' shows how a strat may be constrained to trade at desirable times. I would like to make the Start and Finish times parameters of the strat. It would be easy to use int's (they appear in the sample) but this would not be very neat, especialy as leading zreos are suppressed. Does anyone know of a proper way to represent a time as a parameter?
Comment
-
Thanks for that koganam.
It didn't occur to me to use TimeSpan to enter a Time. In fact I have used two TimeSpans, one for start and one for end of trading after combining the fields into two ints, it works fine. After a few minutes wading through .NET, I also found a way to enter a default time.
All very neat really.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment