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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
68 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
37 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
61 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
62 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment