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 Hwop38, 05-04-2026, 07:02 PM
        0 responses
        168 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        324 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        250 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        351 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        180 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X