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 timko, Today, 06:45 AM
      2 responses
      11 views
      0 likes
      Last Post NinjaTrader_ChristopherJ  
      Started by habeebft, Today, 07:27 AM
      0 responses
      4 views
      0 likes
      Last Post habeebft  
      Started by Tim-c, Today, 03:54 AM
      1 response
      7 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by rocketman7, Today, 01:00 AM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by wzgy0920, 04-23-2024, 09:53 PM
      3 responses
      76 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Working...
      X