Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Backtesting Renko charts
Collapse
X
-
Tags: None
-
Hi crimsonite,
We unfortunately cannot provide trading advice, but will leave this thread open for the community to respond to those questions.
Both backtest/live starts renko charts using the the start date you define in your strategy or chart. They are also reset each session, defined by your session template.Does Ninja automatically curve fit each renko backtest by using the ideal starting tick point? How does this "starting tick point" work in live trades... it seems to just pick a random tick off the bat.
With renko bars in a backtest, you should consider adding a secondary, smaller series to provide increased granularity:
You can submit orders to different Bars objects. This allows you the flexibility of submitting orders to different timeframes. Like in live trading, taking entry conditions from a 5min chart means executing your order as soon as possible instead of waiting until the next 5min bar starts building. You can achieve this byRyan M.NinjaTrader Customer Service
-
Easy question
Hy!
About http://www.ninjatrader.com/support/f...ead.php?t=6652 :
is it possible to use EnterLongLimit instead EnterLong?
I've tried with
EnterLongLimit (1, false, 1, Close[0], "");
but no orders are generated. Ideas?
Thanks in advance!
Comment
-
Hello mirkocero,
Thanks for your post.
You have set the liveUntilCancelled property to false. As such the order will be cancelled if it is not filled on the bar itself. If you change the liveUntilCancelled property to true then are you able to make it work?
If you modify the code as below then are you able to get it work.
Code:EnterLongLimit (1, [B]true[/B], 1, Close[0], "");
JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
80 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
46 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
29 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
66 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|
Comment