Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

A system

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

    A system

    Hi, I'm trying to programm this sistem but I can't get it. Can anyone help me please?

    The system is like this:

    The rule is to buy on the open every Monday if that open is lower than Friday's close.

    Thank you.

    #2
    joburg, can you show us the code you already have so we can start pointing you in the right direction?
    AustinNinjaTrader Customer Service

    Comment


      #3
      Ok this is the complete system: It is describe in the book Long Term Secrets to Short Term Trading Larry Williams:
      It's to buy on the open every Monday if that open is lower than Friday's close. A stoploss of 3000 $ and a target profit of 500 $.The system is for Daily Bars for S&P 500.

      This is the code I'm programming:

      Iniatialize()
      {
      CalculateOnBarClose = true;
      SetStopLoss(3000, true);
      SetProfitTarget(500);

      OnBarUpdate()

      if (Time[0].DayOfWeek != DayOfWeek.Tuesday && Time[0].DayOfWeek != DayOfWeek.Wenesday && Time[0].DayOfWeek != DayOfWeek.Thursday &&Time[0].DayOfWeek != DayOfWeek.Friday

      if (Open[0] < Close[1])
      {
      EnterLong(DefaultQuantity, "");
      }

      I'm not sure if I'm right. Can anyone help me?

      Comment


        #4
        joburg, we would not be familiar with that specific system rules, but the code look ok and should compile for you - are you seeing any issues if you backtest ist?

        Comment


          #5
          I have tested it and it's ok.Finally I got it!!!

          Thank you.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          637 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          366 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          107 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          569 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          571 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X