Indicators

Free Building Block: IndiOscillator
 0
  0
  1233
10 Oct 2020, 23:35
Comes with source code. This is a custom building block for handling signals generated by an Oscillator. Similarly to IndiCrossover it takes DataSeries as inputs (one for the Oscillator series,...
Free Relative Volatility Index (RVI)
 0
  0
  1515
14 Sep 2021, 09:50
The relative volatility index (RVI) is a volatility indicator that was developed by Donald Dorsey to indicate the direction of volatility. It is similar to the Relative Strength Index (RSI),...
Free Alarm Trend Line Hit
 2
  0
  4149
23 Sep 2017, 10:19
This indicator , I adopt from https://ctdn.com/algos/indicators/show/203 ( This alram Horizontal line) I change a llite bit to alarm Trendline hit  Input data 1. input Point1 - datetime and price 2. input...
Free Market Facilitation Index
 0
  0
  1182
28 Jul 2021, 14:47
Market Facilitation Index , by Bill Williams , plots the effectiveness of price movement by computing the price movement per volume unit. Green : --------------------------------- MFIndex increases and the volume increases. This means that the amount of...
Free Custom Period Chart
 0
  0
  1450
02 Mar 2021, 08:41
Plots a custom period chart over your current cTrader chart, it has all of the cTeader supported chart types like tick, Renko, and Range. The indicator comes with Heiken Ashi calculation...
Free QQE
 1
  0
  1421
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...
Paid 趋势H
 0
  0
  0
05 Jan 2024, 01:13
趋势看得比较准的工具
Free trend
 0
  0
  2915
by JSCCEO
24 Jan 2018, 22:38
follow our ideas for trading here with take profit levels    https://www.tradingview.com/u/justshortcut/ best of luck *
Free positive exposure
 0
  0
  2141
19 Aug 2017, 08:08
//facebook fanpage: www.facebook.com/Ai.Algo using cAlgo.API; namespace cAlgo {     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]     public class ShowEquity : Indicator     {         public string note1 { get; set; }         [Parameter("Note 2")]         public string note2 { get; set; }         string Tradeposition;         public override void Calculate(int index)         {             var positin = Positions.FindAll("");             double ripatamiter = 0;             double order = 0;             if (Symbol.Code == "USDJPY" || Symbol.Code == "EURJPY" || Symbol.Code == "GBPJPY" || Symbol.Code == "AUDJPY" || Symbol.Code == "CHFJPY" || Symbol.Code == "CADJPY" || Symbol.Code == "NZDJPY" || Symbol.Code == "SGDJPY" || Symbol.Code == "NOKJPY" || Symbol.Code == "SEKJPY" || Symbol.Code == "ZARJPY")             {                 ripatamiter = Symbol.Bid * 10;             }             else if (Symbol.Code == "XAUUSD" || Symbol.Code == "XAUEUR" || Symbol.Code == "XTIUSD" || Symbol.Code == "XAGUSD" || Symbol.Code == "XAGEUR" || Symbol.Code == "XPTUSD" || Symbol.Code == "XNGUSD" || Symbol.Code == "XBRUSD" || Symbol.Code == "USDX")             {                 ripatamiter = Symbol.Bid;             }             else...
Free Rob Booker ADX Breakout
 0
  0
  1478
04 Oct 2021, 10:03
This is the Rob Booker ADX Breakout indicator implementation for cTrader. It uses the popular ADX indicator on the background to find breakout trade setups. When market is consolidating or when...
Free Infinite Impulse Response Filter
 1
  0
  1250
23 Apr 2020, 23:26
For further investigation This is a simple infinite impulse response filter as used in digital signal processing. You may enhance its order, change type and experiment with parameter sets. Note...
Free Average True Range pips
 3
  0
  2656
13 Feb 2022, 16:37
Simple Average True Range But in pips v1 : code fix as stated by @emil.kupco
26 Jul 2020, 09:52
This is extension of Bollinger Bandwidth indicator which also indicates squeeze and bulge as explained by Mr. John Bollinger himself in video:    Squeeze - When blue line of bandwidth...
Free Trading Time Periods
 1
  0
  2540
18 Jun 2019, 23:38
Plots a transparent range based on your defined start/end time on your chart. Free Download: https://www.algodeveloper.com/product/trading-time-periods/ If you have any question or issue with our product please contact us via our site...
Free RSI Weighted
 0
  0
  157
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 DrawPriceMove V4
 1
  0
  1283
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 Stochastic RSI CCI: c3in1_St_RSI_CCI
 0
  0
  1913
09 Dec 2019, 09:21
The indicator is a combination of Stochastic RSI CCI.    
Free HLAveragesTFComposite
 0
  0
  1187
02 Aug 2020, 10:15
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 cTrader High-Low (HL) Indicators
 0
  0
  2468
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 SPUD Stochastic Theory Indicator
 0
  0
  3134
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 pivot points intra day
 0
  0
  4168
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 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 FiftyFifty
 0
  0
  1168
30 Nov 2020, 21:44
Buenas tardes amig@s: Hoy les propongo a ustedes un estudio de la reversión del cincuenta por ciento de la tendencia. En mi opinión, es un nivel a considerar aunque hay...
Free Know Sure Thing (KST)
 0
  0
  1267
06 Dec 2021, 08:09
Developed by Martin Pring, Know Sure Thing (KST) is a momentum oscillator based on the smoothed rate-of-change for four different timeframes. Pring first described the indicator in the 1992 “Summed...
Free Vortex
 0
  0
  2398
18 Jun 2019, 23:48
The Vortex indicator for cTrader, the indicator comes with alerting feature which shows a popup whenever +VI crosses the -VI or vice versa, you can set sound, email, and Telegram...
Free Silver Trend Indicator for cTrader
 0
  0
  1405
13 Jun 2023, 13:19
The Silver Trend indicator is a powerful trend-identifying tool for the cTrader platform. It's designed to provide accurate trade signals by highlighting significant trends in market prices. By identifying the...
Free Fractals Multi Timeframe
 3
  0
  1988
30 Dec 2021, 07:08
Draw Fractal Lines/Icons of Higher Timeframes. Calculates fractal pattern for Higher TF and shows on the current chart as Lines/Icon/Both. Pattern is calculated as: (For 3 Bar Pattern) For HIGH:...
06 Dec 2021, 06:58
Developed by Carl Swenlin, the DecisionPoint Price Momentum Oscillator (PMO) is an oscillator based on a Rate of Change (ROC) calculation that is smoothed twice with exponential moving averages that...