Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adding a Time filter to my strategy

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

    Adding a Time filter to my strategy

    I want to add a time filter to my strategy. I found a script to do this. I am not an expert programmer but can I just use this script next to my own strategy? Or do I have to paste the code in my own strategy?

    I found this script:

    #2
    Hello MichaelAlexander,

    Thanks for your post.

    You can incorporate the time filter coding and adjust as needed for your circumstances. Yes, you could copy and paste and adjust the time code lines.

    The first line of the code: if (Time[0].DayOfWeek != DayOfWeek.Monday && Time[0].DayOfWeek != DayOfWeek.Friday) demonstrates how to use a particular day of the week as a filter, IE no trade on Monday or Friday.

    Inside of the first line that checked for the day of the week is a particular time filter that will enter an order if the time is within two different time ranges, either 9:30AM to 12:00PM or 2:00PM to 3:345PM.
    if ((ToTime(Time[0]) >= 93000 && ToTime(Time[0]) < 120000) || (ToTime(Time[0]) >= 140000 && ToTime(Time[0]) < 154500))

    If you copy and paste make sure you observe the structure of the "{ }".

    Basically, you would replace the lines:

    if (Close[0] > Close[1])
    EnterLong();


    with your entry conditions and entry order and/or any code that you wish to run withing the limits of the time filter.


    If you would like your strategy coded for you, we would be glad to provide access to 3rd party coders who would be able to meet your needs.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    118 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X