Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 07-28-2007, 02:12 PM
Member
 
Join Date: Jun 2007
Posts: 63
Million_Fund is on a distinguished road
FX_Sniper's_T3_CCI

anyone has open source for this indicator?

please post here
Attached Images
File Type: gif FXsniper.GIF (4.5 KB, 1597 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #2 (permalink)  
Old 07-28-2007, 03:03 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 497
frantacech is on a distinguished road
Quote:
Originally Posted by Million_Fund View Post
anyone has open source for this indicator?

please post here
FX Sniper's T3 CCI.mq4

PHP Code:
//+------------------------------------------------------------------+
//|                                           FX Sniper's T3 CCI.mq4 |
//|                                                        FX Sniper |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "FX Sniper:  T3-CCI :-)"
#property link      "http://dunno.com  :-)/"
 
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Blue
#property  indicator_color2  Green
#property  indicator_color3  Red
//----
extern int CCI_Period 14;
extern int T3_Period 5;
extern double b 0.618;
//----
double e1e2e3e4e5e6;
double c1c2c3c4;
double nw1w2b2b3;
double cci[];
double cciHup[];
double cciHdn[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators setting
    
SetIndexBuffer(0cci);
    
SetIndexBuffer(1cciHup);
    
SetIndexBuffer(2cciHdn);
//----
    
SetIndexStyle(0DRAW_LINE);
    
SetIndexStyle(1DRAW_HISTOGRAM);
    
SetIndexStyle(2DRAW_HISTOGRAM); 
//----        
    
IndicatorShortName("FXST3CCI(" CCI_Period ", " T3_Period ")");
    
SetIndexLabel(0"FXST3CCI");     
   
SetIndexLabel(1NULL);
   
SetIndexLabel(2NULL);   
//---- variable reset
    
b2 b*b;
    
b3 b2*b;
    
c1 = -b3;
    
c2 = (3*(b2 b3));
    
c3 = -3*(2*b2 b3);
    
c4 = (3*b3 3*b2);
    
T3_Period;
//----
    
if(1
        
1;
    
0.5*(1);
    
w1 / (1);
    
w2 w1;    
//----
    
return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   
int limit;
   
int counted_bars IndicatorCounted();
//---- check for possible errors
   
if(counted_bars 0
       return(-
1);
//---- last counted bar will be recounted
   
if(counted_bars 0
       
counted_bars--;
   
limit Bars counted_bars;  
//---- indicator calculation
   
for(int i Bars 1>= 0i--)
     {   
       
cci[i] = iCCI(NULL0CCI_PeriodPRICE_TYPICALi);
       
e1 w1*cci[i] + w2*e1;
       
e2 w1*e1 w2*e2;
       
e3 w1*e2 w2*e3;
       
e4 w1*e3 w2*e4;
       
e5 w1*e4 w2*e5;
       
e6 w1*e5 w2*e6;    
       
cci[i] = c1*e6 c2*e5 c3*e4 c4*e3;  
       
//----
       
if(cci[i] >= 0)
           
cciHup[i] = cci[i];
       else
           
cciHup[i] = 0;   
       
//----
       
if(cci[i] < )
           
cciHdn[i] = cci[i];
       else
           
cciHdn[i] = 0
     }   
//----
   
return(0);
  }
//+------------------------------------------------------------------+ 
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #3 (permalink)  
Old 07-28-2007, 10:37 PM
Member
 
Join Date: Jun 2007
Posts: 63
Million_Fund is on a distinguished road
thanks dude...appreciate that
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #4 (permalink)  
Old 12-13-2007, 12:19 AM
Junior Member
 
Join Date: Dec 2007
Posts: 3
protlo is on a distinguished road
FX_Sniper's_T3_CCI

Is there a site where I can download the indicator so I can demo test?
Thnx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #5 (permalink)  
Old 12-13-2007, 12:26 AM
Senior Member
 
Join Date: Feb 2006
Posts: 587
Michel is on a distinguished road
Quote:
Originally Posted by protlo View Post
Is there a site where I can download the indicator so I can demo test?
Thnx
You have it ! Just copy/paste the code above on a new indic.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #6 (permalink)  
Old 12-13-2007, 04:02 AM
Senior Member
 
Join Date: Oct 2007
Posts: 230
Dave137 is on a distinguished road
Smile

Here it is!

Dave
<><<<
Attached Files
File Type: mq4 FX Sniper's T3 CCI.mq4 (3.0 KB, 468 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #7 (permalink)  
Old 11-18-2008, 02:29 PM
tigertrader's Avatar
Junior Member
 
Join Date: May 2006
Posts: 10
tigertrader is on a distinguished road
Quote:
Originally Posted by Million_Fund View Post
anyone has open source for this indicator?

please post here

It is very pretty but what does it do?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #8 (permalink)  
Old 11-18-2008, 11:20 PM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
There is one version made by igorad where some few bugs are corrected: http://www.forex-tsd.com/151836-post23.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
fx_sniper, fxst3cci, t3 cci, FX sniper's T3 CCI, Fx Sniper t3 cci


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump


All times are GMT. The time now is 04:23 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.