cci with arrow – indicator MetaTrader 4

cci with arrow - indicator for MetaTrader 4
Description: It can be used for scalpers and to determine if a trend is gaining or loosing momentum. For scalper:use on m5 attach with period M15,M30 and H1 where there exist an arrow,place an order. For momentum: the arrow indicates where the new high/low is greater/lesser than the previous high/low,hence can be used to predict … Read more

CCI T3 – indicator MetaTrader 5

CCI T3 - indicator for MetaTrader 5
Standard Commodity Channel Index smoothed by Tilson algorithm. The indicator implements efficient calculation method (calculation by bar closing). Tips: The indicator can be used as the integral part of a trading system as the signal filter. BUY signal – the histogram crosses the zero line upwards. SELL signal – the histogram crosses the zero line … Read more

CCI T3 Tick – indicator MetaTrader 5

CCI T3 Tick - indicator for MetaTrader 5
The standard Commodity Channel Index indicator smoothed using Tillson’s algorithm. This version features recalculation on every tick. The indicator is drawn real time. Proper operation of the smoothing algorithm requires the use of buffer variables for storing and retrieving smoothing coefficients after the closing of the bar. The calculation is not performed over the entire … Read more

CCI on Step Channel – indicator MetaTrader 4

cci on step channel
The classic CCI indicator uses Moving Average of Typical price. This version uses median line of the Step Channel indicator. This line will be created from the result of tug of war between [raising price] and [falling price]. This chart shows the differences. Blue Line is Typical SMA(14), Pink Line is Volatility Step Channel(StdDev(1.0), Ma(3), … Read more

Trading signals function. Based on the values of the CCI indicator. – library MetaTrader 4

Trading signals function. Based on the values of the CCI indicator. - library for MetaTrader 4
Trading signals function. Based on the values of the CCI indicator. Add the function to the EA: #include <Signal.mqh> Condition if(GetSignal()==1) is for buys. Condition if(GetSignal()==-1) is for sells. External variables of the function: periodCCI – the period of averaging for calculation of the indicator. applied_price – Used price. It can be any of the … Read more

Lnx CCI – indicator MetaTrader 5

Lnx CCI - indicator for MetaTrader 5
This is the version of well known Woodies CCI with correct implementation of trend changing rules (the “infamous” yellow bar that has to appear at a bar that strictly follows woodies rules. Added are the slopes of ema and LSMA (linear regression value) as colored lines that are adding information to decision taking when the … Read more

CCI Averages Pre-Filtered – indicator MetaTrader 5

CCI Averages Pre-Filtered - indicator for MetaTrader 5
CCI is without any doubt a useful indicator. The only thing that bothers me is its “roughness” or “being nervous”. It jumps in a sudden changes very quickly and sometimes it simply limits its usefulness. Traditional ways of smoothing are simply not good enough for one simple reason: the peaks so characteristic to CCI are … Read more

CCI – experiment extended – indicator MetaTrader 5

CCI - experiment extended - indicator for MetaTrader 5
CCI “experiment” with a few things added that can completely modify the way CCI is calculated. This version can be : adaptive (using VHF – vertical horizontal filter – for adapting) or “regular” CCI (no adapting). Prices can be filtered – using one of the 4 basic average types : simple moving average exponential moving … Read more