Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

OnStartUp and OnBarUpdate not called

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

    OnStartUp and OnBarUpdate not called

    Hello All,

    I am a newbee with NinjaTrader and am having a hard time getting started.

    I wrote the following basic code. It just prints when the various functions are called.
    1) I connect to my data provider,
    2) then create a chart.
    3) Add the data series "6S 06-13".
    4) Open the output window
    5) Then I add my strategy "PivotInputTester".

    - I get the Initialize print statement running twice and the OnBarUpdate or the OnStartUp are never called.

    Any Ideas?

    Cheers,
    Cleo

    publicclass PivotInputTester : Strategy
    {
    ///<summary>
    /// This method is used to configure the strategy and is called once before any strategy method is called.
    ///</summary>
    protectedoverridevoid Initialize()
    {
    CalculateOnBarClose =
    true;
    Print(
    "Initialize");
    }
    protectedoverridevoid OnStartUp()
    {
    // Set any variables or logic you wish to do only once at start of your indicator/strategy
    Print("OnStartUp");
    // double test = Pivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20).S1[0];
    // double value = Pivots(PivotRange.Daily, HLCCalculationMode.CalcFromIntradayData, 0, 0, 0, 20).PP[0];
    //Print("The Initialize Pivots' pivot value is " + value.ToString());
    }
    ///<summary>
    /// Called on each bar update event (incoming tick)
    ///</summary>
    protectedoverridevoid OnBarUpdate()
    {
    Print(
    "On Bar Update");
     
    }

    #2
    Welcome to our forums Cleo - what chart type and historical data look back are you running on please? Would it change the outcome if you loaded more data before enabling the strategy?

    Comment


      #3
      You need to enable the strategy before OnStartUp and OnBarUpdate are called.

      Comment


        #4
        Thank you, Enabling the strategy worked perfectly.

        Cheers,
        Cleo

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        633 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        364 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        105 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        567 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        568 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X