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