Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

TimeSpan

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

    TimeSpan

    Hi,

    I am using TimeSpan and whilst it seems to be working ok when I close and reopen NinjaTrader the indicator is still loaded on the chart but the values are all 00,00,00. Is this expected behaviour?

    Code:
    #region Variables
    TimeSpan sessionStart                = new TimeSpan(22,20,00);     
    TimeSpan sessionEnd                    = new TimeSpan(23,59,59);  
    
    protected override void OnMarketData(MarketDataEventArgs e)
    
    DateTime now = (Bars.MarketData.Connection.Options.Provider == Cbi.Provider.Replay ? Bars.MarketData.Connection.Now : DateTime.Now);
    
    if(now.TimeOfDay >= sessionStart && now.TimeOfDay <= sessionEnd)
    {
    //do something
    }
    
    #region Properties
    [Description("Session Start")]
            [GridCategory("Parameters")]
            public TimeSpan SessionStart
            {
                get { return sessionStart; }
                set { sessionStart = value; }
            }
            
            [Description("Session End")]
            [GridCategory("Parameters")]
            public TimeSpan SessionEnd
            {
                get { return sessionEnd; }
                set { sessionEnd = value; }
            }
    Regards,
    suprsnipes

    #2
    Hi suprsnipes, which value would you expect instead? The OnMarketData() would not be called on any historical bars / period to calculate.

    Comment


      #3
      It works ok it's just when I close NinjaTrade down and then reopen the default values or whatever I have them set to are all reset

      Comment


        #4
        Oh ok, I see what's up here. You would need to custom serialize the TimeSpans to be able to persist (as they are not serializable in C# per dedault). Here's user shared code snippet posted showing how do achieve that:

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        571 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        331 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
        549 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        549 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X