Indicators

Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
How to install
Price Action / BreakOut
  6
  5
  38465
free  10 Oct 2014
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 period. It adapts to the market, based on the logic of inside bars.   Buy, when price is above EMA and breaks up from the consolidation channel. Sell, when price is below EMA and breaks down from the consolidation channel.
Super Profit
  18
  5
  17083
free  18 Sep 2013
Trend indicator with trigger alerts. 
free  14 Apr 2014
Create in mq4 this program and i use simple convert from mq4 to cAlgo. What can I say  "The Trend Is Your Friend, Until It Ends :-)", create auto trend line with using zigzag indicator . Good Luck and Have Fun To Make Pips.  
free  05 Jul 2022
I couldn't find a VWAP indicator for Ctrader so programmed one and am sharing it with the community.  There is lots of information about this indicator on-line. VWAP indicator not to be confused with VWAP execution. Parameters deserve some explanation: One day only?  If this is set to true/yes then the VWAP is only calculated and shown on the chart for the current day.  I would suggest using this setting if you are using this indicator in a cbot because performance (speed) will be improved in backtesting and optimisation.  Default: false.  When set to false you will see the VWAP day by day.  The calculation resets each day. Periods.  Default: 0.  If you set a value other than 0 for this parameter it completely overrides the day or 'day by day' calculation and calculates the VWAP on a rolling basis for the the number of periods you choose. I'll try to respond to any comments.  Also please share any good strategies you have using this indicator. Donations welcome to: BTC: 33gjtYhKVqFxmcbcko63WnwiVJvew3PauQ ETH: 0xb54dF35117D94a43Ca25A3A348Ac20DF7F667F7b LTC: M8YRuyH5USv2MvJyyF55U5ik1yMfm6TtMH Cheers, David Wilson-Parr.
free  19 Dec 2013
Draws channel using linear regression of close prices. Can optionally display center of channel (mean), edges (maximum deviation) and standard deviation. Color and line thickness are also customizable.
Heikin-Ashi Smoothed
  6
  5
  12748
free  02 Jul 2013
Heikin-Ashi with smoothing filter choices. If you don't need smoothing, set Periods = 1 and MA Type = Simple.     
Trend Lines Indicator
  4
  5
  12459
free  15 Oct 2013
Draws trend lines based on the most recent peaks and valleys for the given period. The two points that define the lines are highlighted in red. /forum/whats-new/913#2
Fractals Auto Trend Line
  7
  5
  11723
free  14 Oct 2013
This is a well know trend line breakout strategy using fractals.Identify Trend Lines Automatically TrendLine Visualizer identifies Trend Lines automatically and easily.  
Renko
  38
  4.44
  10827
by Jiri
free  12 May 2018
Description A type of chart, developed by the Japanese, that is only concerned with price movement - time and volume are not included. A renko chart is constructed by placing a brick in the next column once the price surpasses the top or bottom of the previous brick by a predefined amount. Green bricks are used when the direction of the trend is up, while red bricks are used when the trend is down. Updates 24/01/2016 Released. 25/01/2016 Added live forming brick. Added option to plot defined number of bricks. Added option to choose colors for bricks. Updated reference mode for better performance. 27/01/2016 Changed charting method. Overlay set to true by default. Deleted reference mode. (Check reference sample to update your cBot / Indicator!) 29/01/2016 Added LastValue (live forming brick) into outputs. 31/01/2016 Added High and Low values into outputs. 01/02/2016 Fixed live brick not drawing when BricksToShow was set too high. Improved performance.   Inputs Renko (Pips) - Defines height of one brick in pips. Bricks To Show - Defines how many bricks will be plotted. Zoom Level - Adjusts width of bricks for defined zoom level. Bullish Color - Sets color of bullish bricks. Bearish Color - Sets color of bearish bricks.   Screenshot   Notes Overlay - Indicator can be set not to overlay at line 11. [Indicator("Renko", IsOverlay = false, ...)] Referencing - Indicator can be used in other indicators or cBots. Sample below. public double RenkoPips = 10; public int BricksToShow = 10; private Renko renko; protected override void OnStart() {     renko = Indicators.GetIndicator<Renko>(RenkoPips, BricksToShow, 3, "SeaGreen", "Tomato"); } protected override void OnTick() {     bool isLastBrickBullish = renko.Open.Last(1) < renko.Close.Last(1);     if (isLastBrickBullish)     {         ExecuteMarketOrder(TradeType.Buy, Symbol, 1000);     } } Accuracy When the indicator is loaded it can access only OHLC values of historical data. For better accuracy of historical chart I highly recommend using lower timeframe and scroll back for more data. When the indicator is running it's fed by live data (each tick) so it's 100% accurate no matter what timeframe it's loaded up on.   Make a Donation If you like my work and effort then please consider to make a kind donation thru PayPal or any Credit Card at this link.    
Traders Dynamic Index
  2
  0
  10361
free  22 Jan 2013
A combination of Relative Strength Index, Bollinger Bands and Moving Averages. Strategy: Buy: The Price line is above the Signal line and above the middle Bollinger Band line. Sell: The Signal line is above the Price line and  middle Bollinger Band line. The Bollinger Bands show the strength and direction of the trend.  
VWAP
  3
  0
  10243
free  18 Jun 2019
The volume-weighted average price indicator for cTrader. Free Download: https://www.algodeveloper.com/product/vwap/​ If you have any question or issue with our product please contact us via our site live chat or if we were offline leave a message, if you post a comment here we will not get any notification and we will not be able to help you.
cTrader HMA Signals
  25
  4
  9637
free  27 Feb 2021
This cTrader HMA indicator is an extension to the Hull Moving Average where it shows optional signals for trend:- Optional Arrows on the chart where the trend changes Optional Text on the chart displaying trend direction Optional display of HULL line and only displays trend description. Set how far away the arrow is spaced from the HMA with different time-frames. Two public properties for usage with cBots DOWNLOAD THE INDICATOR     Contact: instant chat group Website: https://clickalgo.com Twitter | Facebook | YouTube | Pinterest | LinkedIn