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

CCI / Stochastic combo (looking for indicator)

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

    CCI / Stochastic combo (looking for indicator)

    I've been searching for a CCI (or CCI Histogram) & Double Stochastic combo indicator. Tried overlaying DoubleStochastics Ninja indicator over CCI Histogram & it only sort-of works. DoubleStochastics based on range of 0 - 100, whereas CCI Histogram ranges from +200 to -200.

    I'd like the Double Stochastics to be able to range between +200 / -200 also, so that you can see when CCI overbought / oversold crosses the DoubleStochastics overbought/oversold range giving indication to go Long / short.

    I see there is a StochRSI combo out there, but no StochCCI or CCIStoch.

    Can anyone help in this regard? Thanks!

    #2
    Hi TheWizard,

    You will find community developed custom indicators in the File Sharing section. I do not recall of anyone creating a StochCCI though. In NT7 we will be allowing the overlaying of indicators with different price scales and that will resolve the issue for you if you do not want to custom code the indicator right now.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      CCIstoch

      Hello,
      I am also looking for the ccistochastic indicator. I know, it is not the same as overlay the cci and ssto- not 3 lines in the panel, but just ONE. I saw on the net, there is a script for it , but for esignal, an I cant impor it in NT.
      Would you be so kind to help with it?
      many thanks, fangelio.

      Comment


        #4
        You cannot import eSignal scripts into NinjaTrader. You need to convert them. Please also consider a 3rd party NinjaScript Consultant here: http://www.ninjatrader.com/webnew/pa...injaScript.htm
        Josh P.NinjaTrader Customer Service

        Comment


          #5
          Looking for CCI/Stoch indicator

          I'm not a very experienced NinjaTrader indicator programmer, but if you can email me the script you found on the web, I'd be willing to take a look & see if I could duplicate it in Ninja. You can email me directly at [email protected] Thanks.

          Originally posted by fangelio View Post
          Hello,
          I am also looking for the ccistochastic indicator. I know, it is not the same as overlay the cci and ssto- not 3 lines in the panel, but just ONE. I saw on the net, there is a script for it , but for esignal, an I cant impor it in NT.
          Would you be so kind to help with it?
          many thanks, fangelio.

          Comment


            #6
            Originally posted by TheWizard View Post
            I'm not a very experienced NinjaTrader indicator programmer, but if you can email me the script you found on the web, I'd be willing to take a look & see if I could duplicate it in Ninja. You can email me directly at [email protected] Thanks.
            Hi

            Can you put the link of Esignal formula for this Indicator?

            Regards

            Comment


              #7
              CCI/Stoch indicator

              No. Sorry. I do not know anything about Esignal.

              Originally posted by vrathee View Post
              Hi

              Can you put the link of Esignal formula for this Indicator?

              Regards

              Comment


                #8
                base logic for StoCCI

                I found this code for the basic logic to this indicator on the web. I am off for a couple of days. may have a crack at it when I return. Good luck


                radeStation code for the "CCI-stochastic indicator (CCI-STO)" by Star, p. 52:
                *Code courtesy of Mark Mills
                {Average(3,(Today's 14-day CCI reading - Lowest 14-day CCI reading (over the past 5 periods)/Highest 14-day
                CCI reading (over the past 5 periods) - Lowest 14-day CCI reading (over the past 5 periods))*100)
                CCI-Stochastic}
                inputs:
                CCILength( 14 ),
                HighLowPeriod( 5 ),
                Smooth( 3 ) ;
                variables:
                TodayCCI( 0 ),
                TodayLowCCI( 0 ),
                TodayHighCCI( 0 ),
                CCISto( 0 ) ;
                TodayCCI = CCI( CCILength ) ;
                TodayLowCCI = Lowest( TodayCCI, HighLowPeriod ) ;
                TodayHighCCI = Highest( TodayCCI, HighLowPeriod ) ;
                if CurrentBar > Smooth + HighLowPeriod then
                begin
                CCISto = Average((TodayCCI - TodayLowCCI)/(TodayHighCCI - TodayLowCCI), Smooth );
                Plot1( CCISto, "CCISto");
                end ;

                Comment


                  #9
                  TheWizard - your email doesnt work

                  Hello TheWizard, I have been trying to send you email to you, but the emails are coming back, your email does not work.

                  So, how can I send it?
                  bye, f.

                  Comment

                  Latest Posts

                  Collapse

                  Topics Statistics Last Post
                  Started by trilliantrader, 04-18-2024, 08:16 AM
                  4 responses
                  18 views
                  0 likes
                  Last Post trilliantrader  
                  Started by mgco4you, Today, 09:46 PM
                  1 response
                  7 views
                  0 likes
                  Last Post NinjaTrader_Manfred  
                  Started by wzgy0920, Today, 09:53 PM
                  0 responses
                  9 views
                  0 likes
                  Last Post wzgy0920  
                  Started by Rapine Heihei, Today, 08:19 PM
                  1 response
                  10 views
                  0 likes
                  Last Post NinjaTrader_Manfred  
                  Started by Rapine Heihei, Today, 08:25 PM
                  0 responses
                  10 views
                  0 likes
                  Last Post Rapine Heihei  
                  Working...
                  X