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

Avoiding consolidation chop

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

    Avoiding consolidation chop

    Not an NT question.

    Does anyone have any advice on how to avoid getting chopped up? thanks

    #2
    A couple of ideas:

    - compare price or moving averages over a certain period
    - examine the slope on slow moving averages
    - evaluate the number of crossovers in indicators during a period
    - get the percentage of the max minus the min of a period and see if that percentage is above a certain threshold

    That being said, I am still googling for an answer to this... Good luck!

    Comment


      #3
      A chop usually goes in a range. You can keep track of the high and the low of prices say 5 to 10 bars ago, calculate the difference Highest - Lowest and use a threshold of the result below which you would not trade. Could be a good indicator to code ...

      Comment


        #4
        A very simple version also would be to check if the current price is at least near a recent high.

        For example in ninjascript, you could check at least if the current price is 2% lower than the previous 200 candles high. Combined with other indicators and good risk management it can filter out a couple of false signals:

        (Close[0] > MAX(High, 190)[10] * 0.98)

        Comment


          #5
          Originally posted by ezrollin View Post
          Not an NT question.
          And maybe to be closer to your original question instead of NT coding and indicators, I am at the point where I consider avoiding trading momentum breakouts and crossovers. It leads you to be a little bit more of a bottom buyer, therefore increasing your risk-reward ratio and you can have a more relaxed risk management approach, instead of fearing a massive reversal when you buy at the top. Just some ideas from a friend struggling in the current market haha.

          Comment


            #6
            Hello ezrollin,

            This question appears to be directed to the community for opinions.

            However, if you do have any specific questions or have specific logic you are having trouble turning to code, I will be monitoring this thread to provide any insight.

            My suggestion would be to define the rules of what is 'chop'.
            Chelsea B.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by alifarahani, Today, 09:40 AM
            4 responses
            21 views
            0 likes
            Last Post alifarahani  
            Started by gentlebenthebear, Today, 01:30 AM
            3 responses
            16 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by PhillT, Today, 02:16 PM
            2 responses
            7 views
            0 likes
            Last Post PhillT
            by PhillT
             
            Started by Kaledus, Today, 01:29 PM
            3 responses
            11 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by frankthearm, Yesterday, 09:08 AM
            14 responses
            47 views
            0 likes
            Last Post NinjaTrader_Clayton  
            Working...
            X