Indicators

Free ZLEMA
 0
  0
  2967
by tbrbde
26 Mar 2016, 20:52
This is a Zero lag EMA as described by John Ehlers (without lag and overshoot). The code is available for several trading platforms but I found no version for cAlgo. So...
Free Fractals TF
 3
  5
  5351
04 Feb 2016, 04:30
Fractals TF allows you to see higher TimeFrame fractals on low TimeFrame charts.   For example, I like to use M5 fractals on M1 charts.
Free Bulls and Bears (v2)
 5
  5
  5212
04 Feb 2016, 00:04
This Bulls and Bears indicator consolidates the Bulls and Bears Power sample indicators in one indicator. Based on the original Bulls and Bears Power sample indicators from cTrade. v2 +...
Free MTF SMA
 3
  5
  3506
by sohoj
31 Jan 2016, 19:47
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)] public class SMAMTF : Indicator { [Parameter(DefaultValue = 14)] public int Periods {...
by ozan
13 Nov 2015, 18:40
custom MovingAverageV02 Moving Average with shift for different price types; (0) = Typical Price (1) = Weighted Close Price (2) = Median Price Typical Price = (O+H+L+C) /4 Weighted Close...
Free ZigZag on multiple TimeFrames
 3
  0
  6305
15 Jul 2015, 16:59
ZigZag indicator, allowing the usage of multiple TimeFrames within one indicator In this sample three different TimeFrames, but it's expandable. Show history-option: displays historical steps of ZigZag algorithm. Based on...
Free Multi Candle
 1
  0
  3885
10 Jul 2015, 08:40
Creates a buy or sell signal soon as bullish candles are N bullish or bearish candle whose size exceeds a given threshold. Project hosted in github
Free Kaufman Adaptative Moving Average
 3
  5
  3931
30 Jun 2015, 20:48
The Adaptive Moving Average (AMA) aka Kaufman Adaptive Moving Average (KAMA) was created by Perry Kaufman and first presented in his book Smarter Trading (1995).  This moving average offered a...
Free PipsATR
 5
  0
  6607
27 Jun 2015, 11:37
PipsATR is nothing other than the ATR indicator, but its values ​​are expressed in pips rather than value.  This gives for each timeframe chosen volatility in pips, which in my...
Free Indicate the crossing betwin two moving
 9
  4.38
  8754
27 Jun 2015, 11:36
indicator print buy/sell signal on the price graph windows when the fast line cross the slow line Author : Abdallah HACID Solution Visual studio
Free DashBoard SMA
 1
  0
  4001
by Iwori
02 May 2015, 06:15
DashBoard MultiTimeFrame SimpleMovingAverage Price > SMA  ->  Trend Up (Color Green) Price < SMA  ->  Trend Down (Color Red) Price = SMA  ->  Not Trend (Color Gray)   Note: The Moving...
Free EURUSD Index V2
 1
  5
  4055
25 Apr 2015, 20:42
Determines the daily increase or decrease in the value of the Euro and Dollar.The actual and projected value of the pair is also plotted. This version of the EURUSD index allows...
Free SMA Slope Indicator
 4
  0
  4156
17 Apr 2015, 09:16
My slope indicator calculates the slope of a smoothed SMA.  You can enter the backstep, meaning the length of time you want to go back to measure the slope.  A...
Free 3 EMA MTF (Multi-timeframe)
 1
  5
  6951
26 Mar 2015, 00:52
3 EMA MTF (Multi-timeframe) using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)] public class EMAMTF : Indicator { [Parameter(DefaultValue = 14)]...
Free Tema MTF (Multi-timeframe)
 0
  0
  3677
25 Mar 2015, 01:33
Triple Exponential Moving Average, or TEMA with Multi-timeframe indicator used: /algos/indicators/show/15 using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC)] public class TEMAMTF :...
Free Heikin Ashi Color Candles (HAcc)
 0
  5
  8168
23 Mar 2015, 21:37
Normal candles with Heikin Ashi (HA) colors.  When HA would be green we have light and dark green candles (or whatever colors you want), when HA would be red we...
Free Moving Average Color Candles (MAcc)
 5
  5
  6009
23 Mar 2015, 04:40
Light and dark green candles above the selected moving average, and light and dark red candles below.   Candles are adjustable in size for both the body and the wick...
Free Raghee's Wave Candles
 0
  5
  4085
23 Mar 2015, 04:39
Similar to MAcc (moving average color candles) these candles have 2 shades of green, blue and red each.  They are Raghee Horner's Wave candles. Also known as her Green Red...
Free Fixed Offset Bands
 0
  0
  2566
19 Mar 2015, 04:16
This is a band indicator based on various moving averages with its upper and lower band placed at a fixed distance expressed in pips. It does not compensate for trend strength or...
Free Heiken Ashi Background
 1
  0
  4227
15 Mar 2015, 09:11
This indicator draw colored lines, color of line is color of Heiken Ashi bar. Very useful for normal bars. Change Width and Height(in price pips) parameter for best usability.
Free zig zag buy sell
 0
  0
  6924
09 Mar 2015, 15:03
//+------------------------------------------------------------------+ //| ZigAndZagScalpel.mq4 | //| Bookkeeper, 2006, yuzefovich@gmail.com | //+------------------------------------------------------------------+ #property copyright "" #property link "" //---- #property indicator_chart_window #property indicator_buffers 7 // Èëè 8 - äëÿ testBuffer #property indicator_color1...
Free zig zag buy sell
 0
  0
  3716
09 Mar 2015, 14:40
//+------------------------------------------------------------------+ //|                                             ZigAndZagScalpel.mq4 | //|                           Bookkeeper, 2006, yuzefovich@gmail.com | //+------------------------------------------------------------------+ #property copyright "" #property link      "" //---- #property indicator_chart_window #property indicator_buffers 7     // Èëè 8 - äëÿ testBuffer #property indicator_color1...
Free SinMaChineseTranslate
 0
  0
  2342
07 Mar 2015, 13:15
// Only For beginners .this is TMA translate into chinese. use Color of violet and period of 16.More like waves //than sma,smma,ema. // //N= peroid. using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators;...
Free GMMA (Guppy Multiple Moving Average)
 0
  0
  6207
16 Feb 2015, 12:19
GMMA (Guppy Multiple Moving Average) An indicator used in technical analysis to identify changing trends. The technique consists of combining two groups of moving averages with differing time periods.  One...
Free Fractals
 4
  0
  5305
07 Feb 2015, 14:54
NinjaTrader Fractals indicator analog. No other description ... No other comments ... It is free of charge :) This is a sample image: End of description.
Free Candlestick Tendency
 4
  5
  6035
28 Jan 2015, 00:49
This is a simple indicator to show if global and local trend directions are the same. It uses two timeframes, a "local" timeframe and a higher order "global" timeframe.The indicator...
Free ADR - Average Daily Range
 8
  5
  8735
16 Jan 2015, 20:53
Hi all. Here an indicator to print the average daily range just as a number (+ current range of today, adr + 50%, adr + 100%). Update: Made it a...
Free EHMA
 0
  0
  3055
18 Dec 2014, 17:20
//Date: 18/12/2014 //Country: Chile //Copyright: Felipe Sepulveda Maldonado  //LinkedIn: https://cl.linkedin.com/in/felipesepulvedamaldonado //Facebook: https://www.facebook.com/mymagicflight1 //Whats Up: +56 9 58786321 //Donations Wallet: wallet.google.com felipe.sepulveda@gmail.com //Paper: Moving Averages for Financial Data Smoothing. EHMA is the Best. //Paper...
Free EurUSD Daily Index
 1
  5
  4351
06 Nov 2014, 20:51
Determines the daily increase or decrease in the value of the Euro and Dollar.The actual and projected value of the pair is also plotted.
Free Price Action / BreakOut
 6
  5
  41364
10 Oct 2014, 19:02
This is a Price Action Indicator, that helps you to identify the difference between trend / sideway market. Unlike Highest High Lowest Low indicator, here you don't need to set...