Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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(23)[0] < 25
                    
    && RSI(23)[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(23)[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 ghoul, Today, 06:02 PM
      3 responses
      14 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      44 views
      0 likes
      Last Post jeronymite  
      Started by Barry Milan, Yesterday, 10:35 PM
      7 responses
      20 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by AttiM, 02-14-2024, 05:20 PM
      10 responses
      180 views
      0 likes
      Last Post jeronymite  
      Started by DanielSanMartin, Yesterday, 02:37 PM
      2 responses
      13 views
      0 likes
      Last Post DanielSanMartin  
      Working...
      X