Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Symbology Display Style Issues
Collapse
X
-
Symbology Display Style Issues
I have a strategy that I run on NQ and have it place trade on MNQ. Everything works fine with Symbology Display Style of MNQ 06-24 but people with theirs set to MNQ JUN24, it will not work, signals are generated and no trades are places. Is this a known issue? Attached is the code I'm using. I even tried changing the additional dataseries to this.... AddDataSeries("MNQ JUN24", Data.BarsPeriodType.Minute, 15, Data.MarketDataType.Last);Tags: None
-
Hello mlarocco,
You can add a Series selector, however this would not initialize an instance of the data series or indicator, it would just give you a selected type.
Below is an example.
Hi team, I am trying to allow my strategy to pick indicators to backtest via the UI In my strategy, I added a NinjaTrader.Gui.Tools.InputEditor Property public class AIStrategyGenerator : Strategy { protected override void OnStateChange() { if (State == State.SetDefaults) { InputIndicator1 = null; } } protected override
Further, AddDataSeries() cannot be called dynamically with variables, and using a selector to add an additional series would not be supported.
It may be prudent to add an empty Series<double> and fill this with data through a barsrequest, if this is what you are trying to do.
Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
43 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
30 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
50 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
40 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|
Comment