Page 1 of 5

CCI dots indicator

PostPosted: Wed Apr 03, 2013 3:38 pm
by Alexander.Gettinger
The indicator shows the points of intersection CCI and zero line on the main chart.

CCI_Dots.PNG


Download:
CCI_Dots.lua
(2.02 KiB) Downloaded 2026 times


CCI_Dots with Alert.lua
(11.33 KiB) Downloaded 1514 times

This indicator provides Audio / Email Alertson CCI / (Zero/OB/OS) line cross.

Compatibility issue fixed.
_Alert Helper is not longer needed.

Re: CCI dots indicator

PostPosted: Sat Apr 06, 2013 6:19 am
by NidalTrader
Hi guys,

is it possible to make the indicator more customisable. To add a ability to see dots on cross on majors levels (-100 ; 100) or user's levels.

Regards.

P.S : you're doing a great job :)

Re: CCI dots indicator

PostPosted: Tue Apr 09, 2013 5:10 am
by Apprentice
Your request is added to the development list.

Re: CCI dots indicator

PostPosted: Wed Apr 10, 2013 4:21 pm
by Alexander.Gettinger
MQL4 version of this indicator: viewtopic.php?f=38&t=34367

Re: CCI dots indicator

PostPosted: Wed Mar 19, 2014 12:48 pm
by rch05000
Hello Apprentice,
Is it possible to put an alert/signal on this indicator?
Thank you in advance

Re: CCI dots indicator

PostPosted: Thu Mar 20, 2014 4:34 am
by Apprentice
CCI_Dots with Alert.lua Added.
OB / OS Level Alert is now supported.

Re: CCI dots indicator

PostPosted: Thu Mar 20, 2014 7:20 am
by rch05000
Thank you apprentice :P

Re: CCI dots indicator

PostPosted: Mon Sep 01, 2014 9:46 am
by 7510109079
quick question:

we have 'CCI period' and 'period' in the indicators settings. whats the difference between the two?

Re: CCI dots indicator

PostPosted: Mon Sep 01, 2014 10:51 am
by Apprentice
CCI Period is Used in CCI Indicator Calculation.
Period is used in in this Line of Code for Range Calculation.
Code: Select all
 local Range=(mathex.avg(source.high, period-Period+1, period)-mathex.avg(source.low, period-Period+1, period))/2;

Range is used in indication (circles) placement.

Code: Select all
 if CCI.DATA[period-1]>=0 and CCI.DATA[period]<0 then
     UP[period]=source.high[period]+Range;
     DN[period]=nil;
    elseif CCI.DATA[period-1]<=0 and CCI.DATA[period]>0 then
     UP[period]=nil;
     DN[period]=source.low[period]-Range;
    else
     UP[period]=nil;
     DN[period]=nil;
    end

Re: CCI dots indicator

PostPosted: Tue Sep 23, 2014 10:08 am
by 7510109079
quick question:

we have 'CCI period' and 'period' in the indicators settings. whats the difference between the two?