Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

how to refer to the price of previous entry?

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

    #16
    First condition set works good. So if price is above 200MA and RSI is below 25 for two days, buy 1 unit.

    But the second&third unit never enters.. What am I doing wrong?

    I want it enter when:

    Unit 1 is entered
    Close is below close yesterday.

    There are no errors in the log.
    Anybody has a solution for this?

    PHP Code:
            {
                // Condition set 1
                if (RSI(2, 3)[0] < 25
                    && RSI(2, 3)[1] < 25
                    && Close[0] > SMA(200)[0])
                {
                    EnterLong(1, "L1");
                }
                if ( Close[0] < Close[1]
                    && Position.Quantity == 1)
                {
                    EnterLong(2, "L2");
                }
                // Condition set 2
                if (RSI(2, 3)[0] > 70)
                {
                    ExitLong("EXITT", "");
                }
            } 
    
    Last edited by no111; 05-28-2010, 12:29 PM.

    Comment


      #17
      Hi no111,

      Make sure your condition are being met with Print()s

      For example...
      Code:
      if ( Close[0] < Close[1] 
                      && Position.Quantity == 1) 
                  { 
                    Print("Second condition has been triggered");
                    EnterLong(2, "L2"); 
                  }
      TimNinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      576 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      334 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      553 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      551 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X