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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
49 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
141 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
160 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
96 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
275 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment