I found this script:
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adding a Time filter to my strategy
Collapse
X
-
Adding a Time filter to my strategy
I want to add a time filter to my strategy. I found a script to do this. I am not an expert programmer but can I just use this script next to my own strategy? Or do I have to paste the code in my own strategy?
I found this script:
Tags: None
-
Hello MichaelAlexander,
Thanks for your post.
You can incorporate the time filter coding and adjust as needed for your circumstances. Yes, you could copy and paste and adjust the time code lines.
The first line of the code: if (Time[0].DayOfWeek != DayOfWeek.Monday && Time[0].DayOfWeek != DayOfWeek.Friday) demonstrates how to use a particular day of the week as a filter, IE no trade on Monday or Friday.
Inside of the first line that checked for the day of the week is a particular time filter that will enter an order if the time is within two different time ranges, either 9:30AM to 12:00PM or 2:00PM to 3:345PM.
if ((ToTime(Time[0]) >= 93000 && ToTime(Time[0]) < 120000) || (ToTime(Time[0]) >= 140000 && ToTime(Time[0]) < 154500))
If you copy and paste make sure you observe the structure of the "{ }".
Basically, you would replace the lines:
if (Close[0] > Close[1])
EnterLong();
with your entry conditions and entry order and/or any code that you wish to run withing the limits of the time filter.
If you would like your strategy coded for you, we would be glad to provide access to 3rd party coders who would be able to meet your needs.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
55 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
132 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment