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

adding filter to swing entry condition

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

    adding filter to swing entry condition

    Hi, how can I say cross below swing low - 3 ticks? (so if price crosses below the swing low it needs to go a 3 ticks further)


    && (CrossBelow(Close, Swing(5).SwingLow, 1))

    #2
    Hello,
    You can do this by doing the following
    Code:
    CrossBelow(Close, Swing(5).SwingLow[0] - 3 * TickSize, 1)
    If we can be of any other assistance please let us know.
    Cody B.NinjaTrader Customer Service

    Comment


      #3
      SwingLow[0] meaning the nearest swing low?

      && CrossBelow(Close, Swing(5).SwingLow[1] - 2 * TickSize, 1))
      This is the correct usage for prior swing low, minus 2 ticks?

      I would want it to enter short on the break of the blue swing low point
      Last edited by brucelevy; 11-10-2015, 05:35 PM.

      Comment


        #4
        This shows the swing, I labeled them, please let me know if the counting of swings is correct or if I am off, or if for example SwingHigh 1 is actually SwingHigh[0] in the code.


        Comment


          #5
          Hello,

          SwingLow[0] would return the value of the SwingLow point of the current bar which would be the previous SwingLowPoint. Calling SwingLow[1] would not return the value of the prior SwingLow point(two swing points back).
          In your example with the SwingHigh, the SwingHigh 1 would be SwingHigh[0].

          Can you clarify what you are meaning by break in "I would want it to enter short on the break of the blue swing low point?"
          Cody B.NinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by JoMoon2024, Today, 06:56 AM
          0 responses
          1 view
          0 likes
          Last Post JoMoon2024  
          Started by Haiasi, 04-25-2024, 06:53 PM
          2 responses
          17 views
          0 likes
          Last Post Massinisa  
          Started by Creamers, Today, 05:32 AM
          0 responses
          5 views
          0 likes
          Last Post Creamers  
          Started by Segwin, 05-07-2018, 02:15 PM
          12 responses
          1,786 views
          0 likes
          Last Post Leafcutter  
          Started by poplagelu, Today, 05:00 AM
          0 responses
          3 views
          0 likes
          Last Post poplagelu  
          Working...
          X