NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Searching for entries matching cci, looking in title and description, keywords for any words
Found 43 matching entries

Sort by

Entries
'Gapless' Collection V2.2 5 *
'Gapless' Collection V2.2

Updated for beta 11.

A collection of simple 'gapless' indicators to get you started with your own versions.

'Gapless' is simply this: it ignores the intra-day session gap. Why do this? Ever tried trend trading at the session open but having to wait for your EMA or RSI to catch up? As far as I'm concerned if I am not making money from the gap itself ie. holding a position overnight, then I want an indicator that will show me 'relative' direction from the opening bar.

* Useful for stocks, DAX, grains and those trading the RTH sessions. You could plot a ETH chart with a regular indicator next to a RTH chart with the gapless indicator for confirmation.

* The indicators have the 'option' to use the gapless concept, else they plot as usual.

* EOD type charts will plot as normal, it will automatically use the standard code.

Includes:

* Gapless EMA (Thanks to FatTails for this original NT7 code).
* Gapless SMA
* Gapless TEMA
* Gapless RSI
* Gapless CCI
* Gapless Macd

V2 Added:

* ADX
* Stochastics
* Double stochastics
* Natural Moving Average x 2

V2.2:

*Checked for NT8b9. Cleaned naming.


and also includes a 'gapless price proxy'. Use this as a replacement 'Input' for your panel indicators. It works for some but not for others, so there are limitations. Try on a regular Macd. Simply add the regular Macd indicator and select 'Input Series'> Indicators>Sim22_GaplessInputProxy. It will now ignore the gaps.


Category NinjaTrader 8 Indicators and More 
 
Suggest other entries I might like
Details: 'Gapless' Collection V2.2
Category: NinjaTrader 8 Indicators and More 


December 16th, 2015
Size: 32.81 KB
Downloaded: 924 times
AaTripleCCI 5 *
Pull backs are often hard to see. I find that combining the [COLOR=#810081]AaDszlDszl [/COLOR]with this indicator helps flush them out.

Version 6.5.0. This indicator is nothing more than three seperate CCI's on one chart with some pretty colors (I like colors). The colors for the background flooding and lines as well as intensity are selectable/deselectable. I try to reduce clutter on my screen as much as possible so the name only displays what I think is the important information.

I circled eight pull backs on the AaTripleCCI whereas the AaDszlDszl only identified four. What I am looking for is the yellow line (the Fast CCI) to move above/below the zero line and return while the blue line (the Slow CCI) stays on the original side.

Using both indicators together is quite nice.

Compatabilty:
NT 6.5: Yes
NT 7: Yes (see link)

Enjoy!
G


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: AaTripleCCI
Category: NinjaTrader 6.5 Indicators 


October 12th, 2010
Size: 6.61 KB
Downloaded: 452 times
Adaptive CCI using Ehlers calculated period 5 *
Put so much work into this that it seemed like a waste to leave it languishing in the Ninjatrader Indicators created free? thread. There are no dependencies on external indicators so all you need to do is put the cs file in your Indicator folder and compile (after removing any previous versions of this indicator that have the same CLASS NAME).

The Adaptive_CCI_db was developed by Mike Winfrey and Gumphrie in a galaxy far far away what seems like a long long time ago for NT 6.0. It needed to be completely recoded for NT7.

This indicator produces one plot, and one optional set of plots:
  1. A single plot of the CCI index, with the option to dynamically adjust the CCI period based on the market cycle length per a rather old John Ehlers algorithm that does have some shortcomings. To choose this option set the period to 1. Selecting a period other than 1 will cause a standard CCI to be plotted, with the period selected.
  2. Plots of alternate CCIs in addition to the primary CCI. The Alternate CCI's are standard CCI's with fixed periods. The number of alternate CCI's, the period value for the one with the lowest period, and the spacing of the periods are user selectable. Example: 10 alternate CCI's, fastest period = 20, spacing of periods = 2. This will plot CCI's with periods of 10 12 14 16 18 20 22 24 26 28.

Code is optimized to avoid unneeded calculations. All of the alternate CCI's are calculated by one algorithm. The alternate CCI's are completely optional. There don't need to be any, but there can be any number, within reason, please.


Category The Elite Circle 
 
Suggest other entries I might like
Details: Adaptive CCI using Ehlers calculated period
Category: The Elite Circle 


April 28th, 2014
Size: 28.70 KB
Downloaded: 1366 times
Adaptive_CCI 5 *
The Adaptive_CCI was developed by Mike Winfrey and Gumphrie what seems like a very long time ago for NT 6.0.
As of 9/16/2011, this version runs on NT 7 and was cleaned up a bit. Still unused code out there but left it for posterity reasons.

There are 2 components of this indicator...
1. Use of John Ehlers code to measure the market cycles and calculate an adaptive period OR set a static period.
2. Plot alternate CCIs in addition to the primary CCI.

The alternate CCIs is kind of neat I think. It was originally designed to show longer timeframe CCIs when looking at a faster timeframe chart. For example, at the time I created this, I was using a 5 minute chart but wanted to use a 1 minute chart to trade from. So, I put up a 1 minute chart and set the Alternate CCI parameters to plot 4 CCIs of 2, 3, 4, and 5 minutes. By using the 1 minute chart, can see the 2, 3, 4, and 5 minute intrabar values. That's really all it amounts to.

Works with all chart types but there are obviously some chart types where there is no direct correlation between the slower and faster periods.


Category The Elite Circle 
 
Suggest other entries I might like
Details: Adaptive_CCI
Category: The Elite Circle 


September 16th, 2011
Size: 13.43 KB
Downloaded: 845 times
ADX BollingerBandwidth CCI indicator 5 *
This is a variation of the CCI indicator that also takes inputs from ADX and Bollingerbandwidth. You can change any of the parameters for the inputs. The indicator looks a lot like the CCI indicator except on big moves and trending moves, where the ADX and bollingerbandwidth give extra weight to the indicators movement.


Update:

here's the code snippet for entry signals for a strat based on this indicator crossing above and under the zero line (with adxperiod, bbwidthperiod and cci period all set at 20 and stdev set at 2. You can screw around with the setting):

For long entries:

if (Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[0] > 0 && Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[1] < 0)

For short entries:

if (Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[0] < 0 && Adxbbwidthcci(20, 20, 20, 2).ADXBBCCILINE[1] > 0)


Additionally, I found the following filter works well with the strat based on this indicator:

// no zero line cross above in last 10 bars for adxbbwcci (you can of course tweak so no zero line cross for at least X bars):

if (CountIf(delegate { return (Adxbbwidthcci(10, 10, 10, 2).ADXBBCCILINE[1] * 1000) > 0;}, 10) >= 10)

Good luck.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: ADX BollingerBandwidth CCI indicator
Category: NinjaTrader 7 Indicators 


October 27th, 2012
Size: 9.10 KB
Downloaded: 932 times
BMT CCI Pivot Zones
The premise behind this indicator is to capture the overbought and oversold conditions of CCI, and then draw trend lines on the chart representative of the turning points.

It is designed for Range or Renko charts only.

The lines are drawn in realtime and do not change. They are drawn as soon as a bar closes where the CCI has pivoted to/from an overbought/oversold area, so you get instant feedback.

The idea is the top (resistance / blue) represents the top of the normal trading range. Price will normally bounce off this resistance area and move lower. The bottom (support / red) represents the bottom of the normal trading range. Price will normally bounce off this support area and move higher.

When price does break through either S/R area, it tends to make new highs and lows (ie: breakout).

The discussion thread is here:
https://nexusfi.com/tradestation-easylanguage-programming/3361-cci-pivot-zones-easylanguage.html

Mike


Category MultiCharts 
 
Suggest other entries I might like
Details: BMT CCI Pivot Zones
Category: MultiCharts 


March 26th, 2010
Size: 2.50 KB
Downloaded: 693 times

Keywords: cci easylanguage multicharts pivot pivots zone zones
BMT Divergence 5 *
VIP members only! Do NOT distribute this to anyone else!

This is an improvement over the OBV Diver previously released to VIP members. The new BMT Diver has a lot of additional options as you can see from the screen shots below. There are more too but I only wanted to take so many screen shots.

Let me also say it will not repaint unless the Plot Style is Line. Using Dot or Hash for plotstyle will prevent repainting (which by default is uses a Dot).

** DO NOT DISTRIBUTE **

Thanks to the VIP members for all their support!

This will show divergence with the following:
SMA, EMA, HMA, JMA, WMA, VMA, ZeroLagEMA, VWAP, CCI, RSX, R, RSI, Bollinger, MACD, Elliot, LinReg, and ADL.

The zero line is important. It is wise to only take longs above the Zero Line, and shorts below it. Please note, the Diamonds/Squares below are different than the OBV Diver indicator previously released, I swapped them around a bit.

Blue dot = no divergence, buy - take note of zero line
Red dot = no divergence, sell short - take note of zero line
Cyan diamond = divergence, buy with caution or look for failure then sell short
Magenta square = divergence, short with caution or look for failure then buy long

Mike

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: NOT TESTED [feedback]


Category The Elite Circle 
 
Suggest other entries I might like
Details: BMT Divergence
Category: The Elite Circle 


December 3rd, 2009
Size: 47.80 KB
Downloaded: 2351 times

Keywords: bmt divergence
BR-Squeeze Indicators 5 *
I've got mixed feelings about these since these indicators are really eld files for Tradestation. But since I am providing screenshots that shows them working on MultiCharts I decided to place them in this section.

Big Mike, let me know if this is okay.

Thanks to Blu-Ray at Traders Lab who posed these and these are his comments concerning these indicators:
The attached indicators are:

"BR_CCi : Which is basically a smoothed CCi.
BR_RSI : Which again is a smoothed RSi.
BR_Momentum : Again a smoothed Momentum ( Can't believe people would actually charge for these )
BR_PaintBars : MA based trend bars.
BR_2FastMa's : Self explanatory.
BR_Squeeze : Partly based on the original squeeze ( as we all know it ), but the histogram is defined to show clearer divergences. Also includes CounterTrend and an alternative midline.
BR_HeatMeter : Can you take the heat ! ( well actually it's just a 50 period CCi )"

If you want to see the real thing then go to paintbarfactory.com. If you would like to learn more about these indicators and would like to buy the real thing then go by paintbarfactory.com!


Category MultiCharts 
 
Suggest other entries I might like
Details: BR-Squeeze Indicators
Category: MultiCharts 


July 7th, 2009
Size: 83.00 KB
Downloaded: 1245 times

Keywords: multicharts
CCI Auto Trendline Break Alert 5 *
Version1: This indicator automatically draws trend lines on the CCI based on pivots. It shows an alert arrow when the average of the CCI breaks a trend line. It also has a configurable audio alert.

It took me a while to extrapolate the trend lines. That data isn't available as it is in easy language. You have to manually create the data points. I wrote my own formula for the slope. Its not just an X/Y conversion when you use an oscillator because some values are above 0 and some are negative. Bearing that in mind i do see a few instances where a trend line break was printed but didn't actually happen. I'm sure I will learn more as I work with this in the markets an make some refinements.

VIP members only please don't distribute this to anyone else!

Version 3: 3/9/2015:
Cleaned up code. Configurable audio alerts. Option for CCI Cross Up/ Down Dots, Arrow color choice, Thermite alert for trendline intersection. Output for bloodhound integration. Enjoy!


Category The Elite Circle 
 
Suggest other entries I might like
Details: CCI Auto Trendline Break Alert
Category: The Elite Circle 


November 29th, 2013
Size: 11.23 KB
Downloaded: 1531 times
CCI Cloud Arrows
Version 1 - CCI Cloud with arrows. This study only places arrows on your chart. You will need to import the study CCI for the histogram shown in the screenshot.

Go to download called CCI Cloud for the subgraph historgram.


Category ThinkOrSwim 
 
Suggest other entries I might like
Details: CCI Cloud Arrows
Category: ThinkOrSwim 


August 28th, 2012
Size: 1.08 KB
Downloaded: 441 times
 



 
Category
 




© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top