Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
View indicators in strategy analyzer chart
Collapse
X
-
View indicators in strategy analyzer chart
Can I see historical trades from the strategy on chart with indicators used in strategy? In strategy analyzer charts I can see only trades.Tags: None
-
-
Hi Ryan,
I have the Add() in my Initialize() method, but the indicators (SMA()) are not displaying when I open the Chart from the Trades tab from a Strategy Analyzer. Could you suggest any further things to look out for?
Here's my code:
protected override void Initialize()
{
SMA(Fast).Plots[0].Pen.Color = Color.Orange;
SMA(Slow).Plots[0].Pen.Color = Color.Red;
Add(SMA(Fast));
Add(SMA(Slow));
CalculateOnBarClose = false;
SetTrailStop(CalculationMode.Ticks, trailStopTicks);
}
Comment
-
Thanks for confirming, Bertrand. Any plans to add this to the SA Charts? That is one feature sorely missed from NT 6.5. When one opens the Trades for a backtest, one would want to see the Chart formation at a particular trade - if the indicators not shown in SA, is there any place where we can see the chart and indicators at a specific back-test-trade?
If nowhere, don't you think this is a huge feature you have dropped from NT6.5 to NT7?
Thanks!
Comment
-
Bertrand,
Thanks for your prompt response and for adding the request for future enhancement. Yes, I am currently using the workaround you suggested, but as you can imagine, it's a huge pain for any non-trivial periods of backtesting. Hope you guys can bring this back to NT at your earliest - it's a MUST HAVE for strategy development. Thanks and have a great day!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
649 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
576 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment