Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Enter Trade by second

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

    Enter Trade by second

    Hello Everyone, I'm currently trying to create a strategy that allows me to enter at a specific second in the minute, every minute. I'm pairing this strategy with another but can't figure out entry at by the second. Thanks

    #2
    Hello EverestOne,

    Welcome to the NinjaTrader forums!

    This would need to be a 1 second chart that has bar closes (with bar time stamps) every second. (Or a multiple of whatever second you are trying to hit)

    If this is not a second chart, you would need to either add a 1 second series with AddDataSeries(), or compare the system time instead of the bar close time.

    On a 1 second series:

    if (Time[0].Seconds == 25)
    {
    Print(Time[0] + " | 25th second bar close");
    }

    I am also including a link to a forum post with helpful resources for getting started with NinjaScript and C#.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    15 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    59 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    42 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    47 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    38 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X