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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    89 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    107 views
    0 likes
    Last Post CarlTrading  
    Working...
    X