Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

NT8: Check for name of day

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    NT8: Check for name of day

    Hello,

    I try to let my strategy check for the current day. My goal is I want to program my strategy so that it does not enter a trade on Monay's between 00:00 and 01:00AM. I can't figure out how to check if the current day is Monday with NT8 coding.

    Can somebody help me with this please?

    Thanks in advance.

    Dennis

    #2
    Hello,
    Thank you for your post.
    You can achieve this by using the DayOfWeek property of the Time series to check if it is Monday and check if the time is between 0:00 and 1:00.
    For exeample:
    Code:
    if(Time[0].DayOfWeek == DayOfWeek.Monday)
    For more information on time filters I would recommend to review our reference sample on creating time filters: http://ninjatrader.com/support/forum...ead.php?t=3226
    Cody B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by AttiM, 02-14-2024, 05:20 PM
    11 responses
    184 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by fernandobr, Today, 09:11 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by timmbbo, Today, 08:59 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by KennyK, 05-29-2017, 02:02 AM
    2 responses
    1,281 views
    0 likes
    Last Post marcus2300  
    Started by itrader46, Today, 09:04 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X