Announcement

Collapse
No announcement yet.

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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    51 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    32 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    99 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    177 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    170 views
    0 likes
    Last Post CarlTrading  
    Working...
    X