Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adding custom bar series to strategy

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    Originally posted by ScotCyGuy View Post
    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.
    You need to assign a unique ID for your bar type, then use the ID to call the bar type in AddDataSeries.

    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",
    };
    ninZa
    NinjaTrader Ecosystem Vendor - ninZa.co

    Comment


      #3
      Gah I knew it would be straight forward...thanks a lot for your help

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Yesterday, 05:17 AM
      0 responses
      62 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      134 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      75 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      45 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      50 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X