Hopefully a quick and easy one, I have written my own custom Bar Type in NT8 and want to add it to a strategy however I can't for the life of me figure out what to put in the BarsPeriodType for the AddDataSeries, any help would be much appreciated.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Adding custom bar series to strategy
Collapse
X
-
Adding custom bar series to strategy
Hello,
Hopefully a quick and easy one, I have written my own custom Bar Type in NT8 and want to add it to a strategy however I can't for the life of me figure out what to put in the BarsPeriodType for the AddDataSeries, any help would be much appreciated.Tags: None
-
You need to assign a unique ID for your bar type, then use the ID to call the bar type in AddDataSeries.Originally posted by ScotCyGuy View PostHello,
Hopefully a quick and easy one, I have written my own custom Bar Type in NT8 and want to add it to a strategy however I can't for the life of me figure out what to put in the BarsPeriodType for the AddDataSeries, any help would be much appreciated.
For example, I assign my ninZaRenko bar's ID to 12345. Then we can add the data series as follows:
AddDataSeries(new BarsPeriod() {
BarsPeriodType = (BarsPeriodType)12345,
Value = 8,
Value2 = 4
});
____________
And here is how I set the ID, which should be done in SetDefaults:
BarsPeriod = new BarsPeriod {
BarsPeriodType = (BarsPeriodType)12345,
BarsPeriodTypeName = "ninZaRenko",
};
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
58 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
34 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
197 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
362 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
282 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment