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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    135 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    119 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    69 views
    0 likes
    Last Post PaulMohn  
    Working...
    X