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 CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      252 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      161 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      165 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      250 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      203 views
      0 likes
      Last Post CarlTrading  
      Working...
      X