Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Port this line correctly

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

    Port this line correctly

    Hello,

    Could someone tell me the correct way to port this line from NT7 to NT8?


    Values[0].Set(max.Key);


    Many thanks!!

    #2
    Hello rafaelmarcos,

    Thanks for the note.

    You can do two things. You can just set the Values[0][0] index to max.Key like this:

    Code:
    Values[0][0] = max.Key;
    Alternatively, if you have a plot that is set up as a public property like you can reference the name of that public property.

    Ex:

    Code:
    protected override void OnBarUpdate()
    {
    	MyPlot[0] = max.Key;
    }
    ...
    
    [Browsable(false)]
    [XmlIgnore]
    public Series<double> MyPlot
    {
    	get { return Values[0]; }
    }
    Please let us know if we may be of any further assistance.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Thanks a lot ChrisL!!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by TheMarlin801, 10-13-2020, 01:40 AM
      20 responses
      3,913 views
      0 likes
      Last Post Bidder
      by Bidder
       
      Started by timmbbo, 07-05-2023, 10:21 PM
      3 responses
      150 views
      0 likes
      Last Post grayfrog  
      Started by Lumbeezl, 01-11-2022, 06:50 PM
      30 responses
      805 views
      1 like
      Last Post grayfrog  
      Started by xiinteractive, 04-09-2024, 08:08 AM
      3 responses
      11 views
      0 likes
      Last Post NinjaTrader_Erick  
      Started by Johnny Santiago, 10-11-2019, 09:21 AM
      95 responses
      6,194 views
      0 likes
      Last Post xiinteractive  
      Working...
      X