Indicators

Free Moving Average with a smooth line
 0
  0
  214
by soskrr
18 Mar 2024, 00:33
A moving average with a smooth line.ParametersMA Source - default = closeMA Type - default = simpleMA Length - default = 10Show Smooth Line - switch for smooth line, default...
Free Ehlers Simple Cycle
 0
  0
  1202
23 Sep 2021, 10:23
This is one of the John Ehlers cycle indicators implementation for cTrader. Github: spotware/Ehlers-Simple-Cycle: Its one of the John Ehlers cycle indicators implementation for cTrader (github.com)
Free Projection Oscillator
 1
  0
  951
20 Dec 2021, 01:43
The Projection Oscillator is based on the Projection Bands indicator. The Oscillator calculates where the close lies within the band as a percentage. Therefore, an Oscillator value of 50 would...
Free Cyf_Momentum_Histogram
 0
  0
  3331
by cyfer
05 Feb 2016, 14:37
This is nothing but the cTrader included Momentum indicator  the only difference is its more visually appealing    using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo...
Free RSI Weighted
 0
  0
  161
by mfejza
25 Jan 2023, 23:33
The Weighted Relative Strength Index (RSI) serves as a momentum indicator, calculated as the ratio between the sums of positive and negative bars in a specified lookback period. A significant...
Free Ulcer Index
 0
  0
  904
08 Dec 2021, 09:15
Developed by Peter Martin and Byron McCann in 1987, the Ulcer Index is a volatility indicator that measures downside risk. It was first introduced in their 1989 book, The Investor's...
Free DrawPriceMove V4
 1
  0
  1285
12 Oct 2020, 20:06
  V4 is in blue - same as V3 (green) but: Flips trend direction if the bar is either an inner or outer bar to previous. Then checks the trend...
Free Reference for TDFI
 0
  0
  1180
by xabbu
09 Mar 2021, 11:37
this indicator is needed to perform the TDFI correctly. I would have been lucky to build the TDFI without that reference indicator, but I was not able to achive (and...
Free Smoothed High And Low Overlay
 3
  0
  1090
16 Aug 2020, 21:17
In the image, the indicator loaded four times with periods 5, 15, 30 and 60 (This indicator does a lot of calculations, especially with long periods, and probably, older PC's,...
Free Pulsar
 1
  0
  974
08 May 2021, 10:50
 
04 Dec 2021, 02:00
The Triple Exponential Moving Average (TEMA) reduces the lag of traditional EMAs, making it more responsive and better-suited for short-term trading. Shortly after developing the Double Exponential Moving Average (DEMA)...
Free Bollinger Band Distance
 0
  0
  1367
10 Apr 2020, 13:02
This indicator measures the distance between upper band to lower band in pips
Free CCI multitimeframe
 0
  0
  253
18 Mar 2024, 09:52
You can see cci from higher or lower timeframes. multitimeframe cci for free.
Free LT_Ind_OX: The Buy Sell signals
 0
  0
  547
by dhnhuy
22 Mar 2024, 06:41
Buy Sell signals for breakout trading.Adjust the period as you need. XTick: Safe gap from break out value, e.g. if XTick = 5, a gap of 5 * TickSize is reserved...
Free RSI MACD Lines
 0
  0
  624
15 Feb 2023, 13:50
This one is like the others, only not a cloud if you would rather ... Also the bar colours I use make it easier to not get messed up with...
Free Frankfurt/London Lines
 2
  0
  4209
by bosma
07 Jul 2015, 10:59
Puts orange-red and red vertical line on open of Frankfurt and London open, works with tick charts. Description is too short.
Free MTF Pivot Channels
 0
  0
  1383
19 Nov 2020, 19:58
This requires the Pivot Channels indicator. This allows you to plot the three support / resistance lines, as well as the pivot, and the high-low of a previous period on...
Free Z-Score
 0
  0
  2420
02 Dec 2013, 12:23
Standard Score The standard score of a raw score x is where: μ is the mean of the population; σ is the standard deviation of the population. [http://en.wikipedia.org/wiki/Standard_score]
Free Stochastic RSI CCI: c3in1_St_RSI_CCI
 0
  0
  1915
09 Dec 2019, 09:21
The indicator is a combination of Stochastic RSI CCI.    
Free HLAveragesTFComposite
 0
  0
  1190
02 Aug 2020, 10:15
Free SPUD Stochastic Theory Indicator
 0
  0
  3135
20 Oct 2016, 18:01
In accordance with the description of the SPUD's theory on the http://www.forexfactory.com/showthread.php?t=37111 indicator shows the corresponding status.
Free cTrader High-Low (HL) Indicators
 0
  0
  2470
27 Feb 2021, 10:25
You will find some free indicators to download on our website for the following events: Highest High Highest Low Lowest High Lowest Low each indicator is a different variation so...
Free Overlay RSI
 0
  0
  1890
05 Mar 2021, 09:57
This indicator overlays RSI on the main chart.   Other tools can be downloaded from Gumroad. ajinori        
Free VFX Enhanced VWAP v1.2
 0
  0
  1803
17 Aug 2021, 19:48
Volume-Weighted Average Price (VWAP) Indicator Enhanced version based on the earlier work of cysecsbin.01 - VWAP with Daily, Weekly and Monthly WAPS Indicator and - VWAP with Bands Indicator   Version history: v1.0 - initial...
Free Balance Of Power (BOP)
 0
  0
  1303
07 Sep 2021, 10:00
This is the Balance of Power (BOP) oscillator indicator for cTrader. Github: spotware/Balance-of-Power: This Balance of Power (BOP) indicator for cTrader (github.com)
by viktan
25 Nov 2015, 03:53
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; namespace cAlgo.Indicators {     [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC)]     public class AdxR : Indicator     {         [Parameter("%K periods 1", DefaultValue = 20)]         public int inpKPeriods1 { get; set; }         [Parameter("%K Slowing 1", DefaultValue = 7)]         public int inpKSlowing1 { get; set; }         [Parameter("%D periods 1", DefaultValue = 20)]         public int inpDPeriods1 { get; set; }         [Parameter("MA type 1", DefaultValue = MovingAverageType.Simple)]         public MovingAverageType inpMAType1 { get; set; }         [Parameter("%K periods...
Free pivot points intra day
 0
  0
  4169
12 Nov 2016, 00:05
using System; using cAlgo.API; namespace cAlgo.Indicators { [Indicator(IsOverlay = true, AccessRights = AccessRights.None)] public class PivotPointsIntraDay : Indicator { private double _close; private double _higher; private double _lower; #region Output...
Free YUSUF AHMED
 0
  0
  219
19 Mar 2024, 15:57
3
20 Nov 2022, 16:15
By using this indicator, we can observe faster and slower divergences at the same time as the MACD default value and make better decisions. Also, move the coordinates of each...
Free SSL Indicator
 4
  0
  1642
by BartNL
11 May 2021, 13:50
The SSL indicator consists of two SMAs, one of the Highs,the other of the Lows. On Close above High SMA, the indicator is Long, on Close below Low SMA, the...