Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
enter a trade 5 seconds before the 5 minute candle closes.
Collapse
X
-
enter a trade 5 seconds before the 5 minute candle closes.
how can I in Strategy wizard tell Ninjatrader once the conditions are met that it should enter long (or Short) 5 seconds before the 5 minute candles closes. is there a code i can just paste inside to make this happen.Tags: None
-
Hi wallsteetking,
This is unfortunately not available with the strategy wizard only. You will need to work in code and can take advantage of C# built in date / time classes. The following link can help generally work with these:
To do this would require comparisons using bar's time stamp with Time[0], and your computer clock with DateTime.Now.Ryan M.NinjaTrader Customer Service
-
Hello Ryan thank you for helping me with this problem. I dont think I am doing this correctly can you take a look at it.
I looked at the examples none of them use comparisons can you help me with this.Code:if (Time[0].Date == DateTime.4,53,0) { EnterLong(DefaultQuantity, ""); }
Comment
-
Hello wallstreetking,
Thanks for writing in and I am replying for Ryan.
Please try the below code to enter in a position 5 seconds before a bar closes.
The above code will work in realtime only.Code:if (DateTime.Now >= Time[0].AddSeconds(-5)) { //do something. }
Please let me know if I can assist you any further.JoydeepNinjaTrader 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
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
89 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
133 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment