How can this be done? I just need codes for MonthOfYear and WeekOfMonth (because I only found DayOfWeek code in the manual), I would do other coding myself.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
MonthOfYear and WeekOfMonth
Collapse
X
-
MonthOfYear and WeekOfMonth
I want to program custom filters for my strategy, like Month Of Year (and test which months perform best) and WeekOfMonth (and test which weeks - 1st, 2nd, 3rd, 4th or 5th perform best).
How can this be done? I just need codes for MonthOfYear and WeekOfMonth (because I only found DayOfWeek code in the manual), I would do other coding myself.Tags: None
-
Hi UltryNIX,
It can be done, but requires coding (although it shouldn't in my humble opinion). A lot of people are interested in various different kinds of seasonality.
The code for the month itself is easy. The following returns an int from 1 to 12:
Time[0].Date.Month
The code for the week is a bit more advanced. Try to identify the turn of the month, then log the day of the week of such event, then increment a counter variable (int) when the same day of the week occurs again while you are still in the same month and finally reset the week's counter variable to zero on each turn of the month.
Have fun.
NT-Roland
-
Thanks for MonthOfYear Calculation, NT-Roland.
I found such code for WeekOfMonth:
However, it doesn't work just by copying and pasting. Can anybody "convert" this code into what NinjaTrader would accept?Code:static int GetWeekNumberOfMonth(DateTime date) { date = date.Date; DateTime firstMonthDay = new DateTime(date.Year, date.Month, 1); DateTime firstMonthMonday = firstMonthDay.AddDays((DayOfWeek.Monday + 7 - firstMonthDay.DayOfWeek) % 7); if (firstMonthMonday > date) { firstMonthDay = firstMonthDay.AddMonths(-1); firstMonthMonday = firstMonthDay.AddDays((DayOfWeek.Monday + 7 - firstMonthDay.DayOfWeek) % 7); } return (date - firstMonthMonday).Days / 7 + 1; }
Comment
-
Hello UltraNIX,
Thank you for your reply.
The code you provided worked fine for me in NinjaTrader 8. Here's an example:
Please let us know if we may be of further assistance to you.Code:protected override void OnBarUpdate() { if(Bars.IsFirstBarOfSession) { int WeekNumber = GetWeekNumberOfMonth(Time[0]); Print("The week number of the month is: "+ WeekNumber); } } static int GetWeekNumberOfMonth(DateTime date) { date = date.Date; DateTime firstMonthDay = new DateTime(date.Year, date.Month, 1); DateTime firstMonthMonday = firstMonthDay.AddDays((DayOfWeek.Monday + 7 - firstMonthDay.DayOfWeek) % 7); if (firstMonthMonday > date) { firstMonthDay = firstMonthDay.AddMonths(-1); firstMonthMonday = firstMonthDay.AddDays((DayOfWeek.Monday + 7 - firstMonthDay.DayOfWeek) % 7); } return (date - firstMonthMonday).Days / 7 + 1; }
- Likes 1
Comment
-
Hello UltraNIX,
You are wanting the day of the week for of the first day of the month that this bar is in, is this correct?
try:
Code:private DateTime myDateTime; myDateTime = new DateTime(Time[0].Year, Time[0].Month, 1); Print(string.Format("Time[0]: {0} | myDateTime: {1}, myDateTime.DayOfWeek: {2}", Time[0], myDateTime, myDateTime.DayOfWeek));Chelsea B.NinjaTrader Customer Service
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
54 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
72 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 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