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 helpwanted, Today, 03:06 AM
      1 response
      10 views
      0 likes
      Last Post sarafuenonly123  
      Started by Brevo, Today, 01:45 AM
      0 responses
      9 views
      0 likes
      Last Post Brevo
      by Brevo
       
      Started by aussugardefender, Today, 01:07 AM
      0 responses
      5 views
      0 likes
      Last Post aussugardefender  
      Started by pvincent, 06-23-2022, 12:53 PM
      14 responses
      242 views
      0 likes
      Last Post Nyman
      by Nyman
       
      Started by TraderG23, 12-08-2023, 07:56 AM
      9 responses
      387 views
      1 like
      Last Post Gavini
      by Gavini
       
      Working...
      X