Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Reset variables at specific time using DateTime now

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

    Reset variables at specific time using DateTime now

    Hi,

    I have a problem with the following code and was wondering why it may not be working.

    In the variables section I have;
    TimeSpan sessionReset = new TimeSpan(00,55,00);

    In OnMarketData
    DateTime now = (Bars.MarketData.Connection.Options.Provider == Cbi.Provider.Replay ? Bars.MarketData.Connection.Now : DateTime.Now);

    if(now.TimeOfDay == sessionReset)
    {
    //Reset Variables
    }

    Regards,
    suprsnipes

    P.S. Just noticed when using
    Print(now.TimeOfDay + " " + sessionReset);

    The now.TimeOfDay includes milliseconds, would this be causing issues?
    Last edited by suprsnipes; 09-10-2014, 01:49 AM. Reason: Added more information

    #2
    That's correct suprsnipes, would not expect that to trigger. I would define your reset simply as int

    private int sessionReset = 05500;

    ...and then use as compare

    if(ToTime(now) == sessionReset)
    {
    do your reset stuff
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    35 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    12 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    18 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X