Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Exclude Holidays
Collapse
X
-
Exclude Holidays
Ok I know there must be a better way to do this than the way I am doing it. Essentially I want to prevent my strategy from trading on pre-determined dates/holidays but I don't want to include this code in my strategy so I created an indicator which is called from the strategy. The values from the indicator are either 1 or 0 depending if it is a holiday or not. It works, but is there a better way for me to do this.Thoughts?Last edited by cutzpr; 06-08-2016, 07:02 AM.Tags: None
-
It will have to be coded. Your method works, but there is a slightly less inelegant method detailed in this thread.Originally posted by cutzpr View PostOk I know there must be a better way to do this than the way I am doing it. Essentially I want to prevent my strategy from trading on pre-determined dates/holidays but I don't want to include this code in my strategy so I created an indicator which is called from the strategy. The values from the indicator are either 1 or 0 depending if it is a holiday or not. It works, but is there a better way for me to do this.Thoughts?
ref: http://ninjatrader.com/support/forum...d.php?p=140164
Look at the post by kdoren.
Comment
-
You can also take a look at this library,Originally posted by cutzpr View PostOk I know there must be a better way to do this than the way I am doing it. Essentially I want to prevent my strategy from trading on pre-determined dates/holidays but I don't want to include this code in my strategy so I created an indicator which is called from the strategy. The values from the indicator are either 1 or 0 depending if it is a holiday or not. It works, but is there a better way for me to do this.Thoughts?
Comment
-
How would I go about adding it this to the define or creating a custom user define method. The directions on how to do it for NT7 do not pertain to NT8.Originally posted by NinjaTrader_CodyB View PostHello,
Aside from including defining what days not to trade in the strategy this is the only other way I could think to do this.
We will leave this thread open in case any other forum users have any thoughts on this.
Comment
-
Hello,
The UserDefined Methods are not in NinjaTrader 8.
Please see the following post on this subject: http://ninjatrader.com/support/forum...15&postcount=2Cody B.NinjaTrader Customer Service
Comment
-
I never uploaded my solution, perhaps it can be useful for some one. I use two static Addons. Here is how I use them.
PHP Code://Boolean for Holidays and NFP private bool isHoliday; private bool isNFP;PHP Code:if (Bars.IsFirstBarOfSession && IsFirstTickOfBar) // Setup everything for the new session { isHoliday = Holidays.IsItHoliday((ToDay(Time[0]) ) ); // Checks if the trading day is a holiday isNFP = NFPs.IsItNFP ((ToDay(Time[0]) ) ); // Checks if the current day is NFP day }
Attached Files
Comment
-
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
52 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
26 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
39 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
56 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
46 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment