Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to determine if a CCI value is above a line value not just the CrossAbove test?

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

    How to determine if a CCI value is above a line value not just the CrossAbove test?

    I am attempting to determine if the CCI value on a bar close is above or below a certain value. I know you can test if it CrossAbove, but can you determine if the value is > than 30 or < than -30 on each bar close and then take some action?

    #2
    Calculate = Calculate.OnBarClose; // set this within OnStateChange(), if (State == State.SetDefaults)

    if(CCI(14)[0] > 30)
    {
    //do something
    }
    if(CCI(14)[0] < -30)
    {
    //do something
    }

    Or you can combine if you need to.
    if(CCI(14)[0] > 30 || CCI(14)[0] < -30)
    {
    //do something
    }

    14 is CCI period.
    Last edited by Leeroy_Jenkins; 02-03-2021, 07:35 AM. Reason: fixed a mistake

    Comment


      #3
      Thanks Leeroy, I will need to learn more about these state commands.

      Comment


        #4
        Hello gjbeaudin,

        Thanks for your post.

        Forum member Leeroy_Jenkins has provided the correct advice assuming you are creating the strategy in Ninjascript.

        If you are using the Strategy Builder then in a sets conditions you would take the approach of:
        Left side: Indicators>CCI
        Center: Less or Greater
        Right side: Misc>Numeric Value 30 or -30

        The Calculate setting specifies how the code is to be run, using Calculate.OnBarClose means your strategy code is run once per bar at the end of the bar. This is the default setting in the strategy builder and can be changed in the "default properties" window of the strategy builder

        Comment


          #5
          Thanks Paul, both responses were very helpful...

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by NullPointStrategies, 03-13-2026, 05:17 AM
          0 responses
          86 views
          0 likes
          Last Post NullPointStrategies  
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          151 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          79 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          52 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          59 views
          0 likes
          Last Post TheRealMorford  
          Working...
          X