Indicators

Free Awesome Oscillator Plus
 0
  0
  2286
by jani
21 Jan 2020, 22:22
This is a modified version of the famous Awesome Oscillator created by Bill Williams. The indicator will show the cumulative sum of the difference between the fast and slow SMA...
Free ma
 1
  0
  1255
11 Jan 2020, 02:02
ma
22 Dec 2019, 13:23
The Hull Moving Average (HMA) is one more alternative of an ideal MA that enables smoothing price movements with the help of weighted averages. The indicator was created by Alan...
Free MACD Histogram with Color m
 1
  5
  1936
18 Dec 2019, 21:44
This MACD Histogram with Colors indicator allows you to set colors for both positive and negative and Growing and Falling values of the Histogram and Signal.  
Free T3 Moving Average
 0
  5
  2707
by jani
12 Dec 2019, 17:42
Posted: Oct 30, 2019 Version Update  2019.12.11  Corrected small error in average slope calculation  ///  "for (var i = index - end; i < index - start; i++)"  insted of  "for (var i = index...
Free KijunSen 3X
 0
  0
  2139
by jani
11 Dec 2019, 19:04
Version uploaded: 2019/11/27 Version updated: 2019/12/11 Used API Functions Maximum & Minimum https://ctrader.com/api/reference/functions instead of the FOR-loops to get  Market Series High & Low. Should result in much fewer calculations  by this indicator...
by jani
11 Dec 2019, 13:06
  Version Update  2019.12.11  Corrected small error in average slope calculation  ///  "for (var i = index - end; i < index - start; i++)"  insted of  "for (var i = index - end; i...
Free Stochastic RSI CCI: c3in1_St_RSI_CCI
 0
  0
  1918
09 Dec 2019, 09:21
The indicator is a combination of Stochastic RSI CCI.    
03 Dec 2019, 12:52
enjoy your trade ;)
Free OHLC Lines
 0
  5
  2421
02 Dec 2019, 12:17
This indicator shows a larger time frame open, high, low, and close levels on a shorter time frame. Free Download: https://www.algodeveloper.com/product/ohlc-lines/ If you have any question or issue with our product...
Free Chart Switch
 1
  0
  1679
02 Dec 2019, 12:17
This indicator uses the cTrader Automate API chart controls to allow you quickly switch the chart timeframe or symbol, it supports up to 20 symbols and 10 timeframes. Free Download: https://www.algodeveloper.com/product/chart-switch/...
Free Volume Sum Delta
 0
  2.5
  3583
02 Dec 2019, 11:02
Its another volume indicator that uses x previous bars volume data and calculates a delta value for the current bar by subtracting the buy volume amount from sell volume amount....
Free Traders Dynamic Index CCI
 0
  0
  1930
by jani
01 Dec 2019, 15:44
A combination of Commodity Channel Index , Bollinger Bands and Moving Averages. This is my modification of the original Traders Dynamic Index https://ctrader.com/algos/indicators/show/215 (Thanks go to fzlogic !!). Original version uses RSI as the base indicator,...
Free Chart Overview
 1
  5
  1430
by devman
29 Nov 2019, 17:06
Chart Overview control. Feel free to make your suggestions to improve this indicator! Demo: Settings:
Free Simple Fibonacci Timezones
 0
  0
  1602
by devman
18 Nov 2019, 23:02
Simple Fibonacci Timezones Indicator. How to use: 1. Draw any trendline. 2. Open trendline settings (right click). 3. Type `ftz` in comment. 4. Type `ftz|7` to create 7 levels. 5....
Free Chart-In-Chart
 5
  5
  2770
by devman
02 Nov 2019, 02:55
Are you want to view detailed bars from a smaller timeframe? Just move the cursor! P.S. Hold "Shift" to freeze the image. Feel free to make your suggestions to improve this indicator!
Free Auto Drawings
 10
  5
  3967
by bart1
29 Oct 2019, 13:48
How to use: 1) Select bars using Ctrl + Mouse  2) Choose desired drawing in selected area: fibonacci, min/max price level, or support/resistance trend line.   Algorhitm to place trend...
28 Oct 2019, 22:47
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators;   namespace cAlgo {     [Indicator(IsOverlay = false, ScalePrecision = 0, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]     public class StochasticCrossAlert :...
Free Ctrl timeframes
 0
  5
  1541
by devman
22 Oct 2019, 01:09
View bars from other timeframes as transparent rectangles. Press "Ctrl" to temporary hide (or show - when parameter Show By Default disabled) bars.
Free Pivot Points and S-R levels
 4
  5
  3715
08 Oct 2019, 00:51
Displays Daily, Weekly and Monthly pivot points as well as R1, R2, R3, S1, S2 and S3 levels on the chart. You can select which of these you want to...
Free ALMA (Arnaud Legoux Moving Average)
 3
  0
  1785
21 Sep 2019, 04:20
Moving Average created by Arnaud Legoux / Dimitrios Kouzis Loukas. Formula: Chartshot: For more info visit: https://web.archive.org/web/20120324082059/http://www.arnaudlegoux.com/wp-content/uploads/2011/03/ALMA-Arnaud-Legoux-Moving-Average.pdf  
Free Pin Bar Indicator
 1
  0
  1921
20 Sep 2019, 07:15
This indicator do not tell direction of the trend. In fact if the trend exist, this indicator may provide false signal. However, if the market is in the ranging state,...
Free Choppiness Indicator - CHOP
 4
  5
  2656
22 Aug 2019, 15:37
The Choppiness Index is a volatility indicator developed by Australian commodity trader Bill Dreiss to indicate whether a market is trending or ranging. Values range between 0 and 100, with low values...
Free Yesterday and Daily Range
 0
  0
  2223
16 Aug 2019, 02:34
I used 
Free Strong vs Weak Analysis
 2
  0
  1647
15 Aug 2019, 07:26
Based on the method as used in the following BP thread: https://forums.babypips.com/t/trading-the-trend-with-strong-weak-analysis/ A few notes: Calculates and displays the strength of each currency relative to JPY. Calculation is performed on...
Free feactals
 0
  0
  1257
12 Aug 2019, 18:44
using cAlgo.API; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, AccessRights = AccessRights.None)] public class Fractals:Indicator { [Parameter(DefaultValue = 5, MinValue = 5)] public int Period { get; set; } [Output("Up Fractal",...
Free fractals
 0
  0
  2130
12 Aug 2019, 18:27
using cAlgo.API; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, AccessRights = AccessRights.None)] public class Fractals:Indicator { [Parameter(DefaultValue = 5, MinValue = 5)] public int Period { get; set; } [Output("Up Fractal",...
Free QQE
 1
  0
  1425
08 Aug 2019, 19:08
using System; using cAlgo.API; using cAlgo.API.Indicators; namespace cAlgo.Indicators { [Indicator(AccessRights = AccessRights.None)] public class QualitativeQuantitativeE:Indicator { private int _wildersPeriod; private int _startBar; private const int SF = 5; private ExponentialMovingAverage...
Free custom volume profile
 1
  0
  2874
01 Aug 2019, 10:37
 
Free Clock
 1
  5
  2231
by bart1
26 Jul 2019, 16:34
Analog clock on the chart using custom UI introduced in cTrader 3.6.