Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Don't take trade on Friday after 3:30

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

    Don't take trade on Friday after 3:30

    I would like help with the code needed to prevent trading on Friday after 3:30. My straegy runs from Sun at 6:00 until it closes out any open positions on Friday at 3:30 and I want to prevent new trades from kicking off Friday after 3:30.

    Thanks

    #2
    Hello 561timw,

    Here is a line that may used to check for this:
    bool myTradeFilter = Time[0].DayOfWeek != DayOfWeek.Friday && ToTime(Time[0]) <= 153000;

    Please see this link which can help working with DateTime objects:
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by 561timw View Post
      I would like help with the code needed to prevent trading on Friday after 3:30. My straegy runs from Sun at 6:00 until it closes out any open positions on Friday at 3:30 and I want to prevent new trades from kicking off Friday after 3:30.

      Thanks
      Code:
      if (Time[0].DayOfWeek == DayOfWeek.Friday && ToTime(Time[0]) >= 153000 && ToTime(Time[1]) < 153000 ) NinjaTrader.Gui.SuperDom.SuperDom.FlattenEverything();
      This will take you flat and close down you strategy in one fell swoop. Unfortunately, the command is not a supported function, so be warned that it may stop working if NT decides to nix it any time in the future.
      Last edited by koganam; 03-07-2011, 01:11 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      153 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      89 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      133 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      128 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      107 views
      0 likes
      Last Post CarlTrading  
      Working...
      X