Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Time as a Parameter.

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

    Time as a Parameter.

    The sample strat 'SampleTimeFilter' shows how a strat may be constrained to trade at desirable times. I would like to make the Start and Finish times parameters of the strat. It would be easy to use int's (they appear in the sample) but this would not be very neat, especialy as leading zreos are suppressed. Does anyone know of a proper way to represent a time as a parameter?

    #2
    Hi Dave, one approach would specifiying a start time hour part and start time minute part for example. The most elegant way would be using DateTime inputs. If you would like to optimize the times though you would better off with Int's still.

    Comment


      #3
      Originally posted by DaveS View Post
      The sample strat 'SampleTimeFilter' shows how a strat may be constrained to trade at desirable times. I would like to make the Start and Finish times parameters of the strat. It would be easy to use int's (they appear in the sample) but this would not be very neat, especialy as leading zreos are suppressed. Does anyone know of a proper way to represent a time as a parameter?
      You would need to use TimeSpan variables if you want to specify Start and End times exactly. More usually, I would use a TimeSpan variable for the Start time, and a double for a duration, then use the duration to internally calculate the End time using DateTime variables. That is the cleanest way to determine the End time if the trading session will cross midnight.

      Comment


        #4
        Thanks for that koganam.
        It didn't occur to me to use TimeSpan to enter a Time. In fact I have used two TimeSpans, one for start and one for end of trading after combining the fields into two ints, it works fine. After a few minutes wading through .NET, I also found a way to enter a default time.
        All very neat really.

        Comment

        Latest Posts

        Collapse

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