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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        142 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        81 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        125 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        120 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        98 views
        0 likes
        Last Post CarlTrading  
        Working...
        X