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 Hwop38, 05-04-2026, 07:02 PM
          0 responses
          154 views
          0 likes
          Last Post Hwop38
          by Hwop38
           
          Started by CaptainJack, 04-24-2026, 11:07 PM
          0 responses
          306 views
          0 likes
          Last Post CaptainJack  
          Started by Mindset, 04-21-2026, 06:46 AM
          0 responses
          244 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by M4ndoo, 04-20-2026, 05:21 PM
          0 responses
          345 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Started by M4ndoo, 04-19-2026, 05:54 PM
          0 responses
          176 views
          0 likes
          Last Post M4ndoo
          by M4ndoo
           
          Working...
          X