Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Enter Trade by second
Collapse
X
-
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. ThanksTags: None
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
50 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
69 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment