NexusFi: Find Your Edge


Home Menu

 





CCI pivot zones (EasyLanguage)


Discussion in EasyLanguage Programming

Updated
      Top Posters
    1. looks_one trs3042 with 5 posts (0 thanks)
    2. looks_two WayneA with 2 posts (21 thanks)
    3. looks_3 bomberone1 with 2 posts (0 thanks)
    4. looks_4 Jeff Castille with 1 posts (0 thanks)
      Best Posters
    1. looks_one Big Mike with 26 thanks per post
    2. looks_two WayneA with 10.5 thanks per post
    3. looks_3 vegasfoster with 6 thanks per post
    4. looks_4 trendisyourfriend with 1 thanks per post
    1. trending_up 17,640 views
    2. thumb_up 55 thanks given
    3. group 15 followers
    1. forum 17 posts
    2. attach_file 5 attachments




 
Search this Thread

CCI pivot zones (EasyLanguage)

  #1 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,212
Thanks Received: 101,599

Here is another EasyLanguage indicator I wrote. 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.

Here are a few example screen shots:

[IMG]https://nexusfi.com/v/egeerf.png[/IMG]

[IMG]https://nexusfi.com/v/v57a3b.png[/IMG]

[IMG]https://nexusfi.com/v/tq3wes.png[/IMG]

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).

Attached is the MultiCharts .pla file to import.

Below is the EasyLanguage code for the indicator:

 
Code
                            
// indicator

// March 25 2010
// Big Mike:  https://nexusfi.com


inputs:
    
ccilength 14 ),
    
turningpoint 100 ),
    
strength );
    
vars:
    
cciv     ),
    
up    ),
    
down    );
    
cciv CCI(ccilength);

if 
cciv crosses below turningpoint and L then up Highest(Highstrength);
if 
cciv crosses above -turningpoint and H then down Lowest(Lowstrength);

Plot1(up,"Up");
Plot2(down,"Down"); 
Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Attached Files
Elite Membership required to download: BMT CCI Pivots Zone.pla
Follow me on Twitter Visit my NexusFi Trade Journal Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Trade idea based off three indicators.
Traders Hideout
REcommedations for programming help
Sierra Chart
How to apply profiles
Traders Hideout
ZombieSqueeze
Platforms and Indicators
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
GFIs1 1 DAX trade per day journal
15 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
Bigger Wins or Fewer Losses?
13 thanks
  #3 (permalink)
 
WayneA's Avatar
 WayneA 
Seattle, WA
 
Experience: Beginner
Platform: NinjaTrader
Trading: Ones that move
Posts: 62 since Aug 2009
Thanks Given: 64
Thanks Received: 58


simple representation of a powerful idea (especially on range bars). thanks mike.

Reply With Quote
  #4 (permalink)
 
trs3042's Avatar
 trs3042 
Holland, Michigan
 
Experience: None
Platform: ninjatrader
Broker: CQG
Trading: Acoustic Guitar
Posts: 1,617 since Jun 2009
Thanks Given: 23,764
Thanks Received: 5,616

Hi Mike,

Is this available for NT 6.5???

Reply With Quote
  #5 (permalink)
 
WayneA's Avatar
 WayneA 
Seattle, WA
 
Experience: Beginner
Platform: NinjaTrader
Trading: Ones that move
Posts: 62 since Aug 2009
Thanks Given: 64
Thanks Received: 58


trs3042 View Post
Is this available for NT 6.5???

I did this in NT7. I'm pretty sure it will work in NT6.5. Let me know if it doesn't.

Best,

wadams.

Attached Files
Elite Membership required to download: CCIPivot.zip
Reply With Quote
  #6 (permalink)
 
trs3042's Avatar
 trs3042 
Holland, Michigan
 
Experience: None
Platform: ninjatrader
Broker: CQG
Trading: Acoustic Guitar
Posts: 1,617 since Jun 2009
Thanks Given: 23,764
Thanks Received: 5,616

This doesn't seem to work on NT 6.5 Is this available somewhere else on the forum for NT 6.5? Thanking everyone in advance for steering me in the right direction.

Reply With Quote
  #7 (permalink)
 vegasfoster 
las vegas
 
Experience: Intermediate
Platform: Sierra Chart
Broker: Velocity/IB
Trading: 6E
Posts: 1,145 since Feb 2010
Thanks Given: 304
Thanks Received: 844


trs3042 View Post
This doesn't seem to work on NT 6.5 Is this available somewhere else on the forum for NT 6.5? Thanking everyone in advance for steering me in the right direction.

Didn't test it so let me know if it has any problems.

Attached Files
Elite Membership required to download: CCIPIVOT_65.zip
Reply With Quote
  #8 (permalink)
 
trs3042's Avatar
 trs3042 
Holland, Michigan
 
Experience: None
Platform: ninjatrader
Broker: CQG
Trading: Acoustic Guitar
Posts: 1,617 since Jun 2009
Thanks Given: 23,764
Thanks Received: 5,616

Seems to work just fine. Thanks vegafoster!!!

Cheers

Reply With Quote
  #9 (permalink)
 
trs3042's Avatar
 trs3042 
Holland, Michigan
 
Experience: None
Platform: ninjatrader
Broker: CQG
Trading: Acoustic Guitar
Posts: 1,617 since Jun 2009
Thanks Given: 23,764
Thanks Received: 5,616


Big Mike View Post
Here is another EasyLanguage indicator I wrote. 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.

Here are a few example screen shots:

[IMG]https://nexusfi.com/v/egeerf.png[/IMG]

[IMG]https://nexusfi.com/v/v57a3b.png[/IMG]

[IMG]https://nexusfi.com/v/tq3wes.png[/IMG]

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).

Attached is the MultiCharts .pla file to import.

Below is the EasyLanguage code for the indicator:

 
Code
                            
// indicator
 
// March 25 2010
// Big Mike:  https://nexusfi.com
 
 
inputs:
    
ccilength 14 ),
    
turningpoint 100 ),
    
strength );
 
vars:
    
cciv     ),
    
up    ),
    
down    );
 
cciv CCI(ccilength);
 
if 
cciv crosses below turningpoint and L then up Highest(Highstrength);
if 
cciv crosses above -turningpoint and H then down Lowest(Lowstrength);
 
Plot1(up,"Up");
Plot2(down,"Down"); 
Mike

Hello Mike,

I trade CL, GC, 6E and TF. I use a MedianRenko 6 tick chart for each. My question is.......what would you suggest I set the parameters on the CCI pivot indicator for each one respectively???

Thanking you in advance,

Rick

Reply With Quote
  #10 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,175
Thanks Received: 6,020


I use 10, 2, 100. It does a good job. You need to remember overbought/sold conditions may occur in succession and produce new lines near each other. I think there is a NT7 version too. Don't remember where i took it.

Reply With Quote
Thanked by:




Last Updated on January 17, 2017


© 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
no new posts