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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
50 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
16 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
23 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment