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

Time[0] syntax

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

    Time[0] syntax

    Hi

    I'd like to print out some results from backtest every day at the last bar of the trading day:

    if (Time = 10:00 PM)
    Print(field)

    What is the correct syntax for "if (Time = 10:00 PM)?

    Thank you

    #2
    If you'd like to check for if the time is 10:00 PM, you could do:
    Code:
    if(ToTime(Time[0]) == 220000)
    Likewise, if you want to check if the time is say, between 9 AM and 10 AM:
    Code:
    if(ToTime(Time[0]) >= 90000 && ToTime(Time[0]) < 100000)
    The time from ToTime comes back as an integer value HHmmSS.
    You can also take a look at the documentation about ToTime.
    AustinNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Started by alifarahani, Today, 09:40 AM
    6 responses
    41 views
    0 likes
    Last Post alifarahani  
    Working...
    X