Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cs1729

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

    Cs1729

    Hello,

    I have a CS1729 error on this instruccion, that I am unable to resolve.

    Any idea?

    -------------------------------
    dailyBars = Data.Bars.GetBars(Bars.Instrument, new Period(PeriodType.Day, 1 ), Bars.From, Bars.To, (Session) Bars.Session.Clone(), Data.Bars.SplitAdjust, Data.Bars.DividendAdjust);
    ----------------------------------------

    Thank you very much.

    Xavier

    #2
    Hello,

    Thank you for the question.

    If you are referring to the error:
    'NinjaTrader.Data.Period' does not contain a constructor that takes '2' arguments


    This is saying that you have placed two arguments between the parenthesis in Period or:
    Code:
     new Period(PeriodType.Day, 1 )
    when it can not accept 2 arguments.

    Looking at the Intelleprompt (place the cursor in between the ( ) and press control+shift+space to view overloads) I see this needs also a MarketDataType or:
    Code:
    new Period(PeriodType.Day, 1, MarketDataType.Last )
    After making this change it compiles.


    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X