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 installHow to install cBots & Indicators
- Download the Indicator or cBot.
- Double-click on the downloaded file. This will install all necessary files in cAlgo.
- Find the indicator/cbot you want to use from the menu on the left.
- Add an instance of the indicator/cBot to run.
- Download the Indicator
- Double-click on the downloaded file. This will install all necessary files in cTrader.
-
Select the indicator from Custom in the functions (f) menu in the top center of the chart
- Enter the parameters and click OK
free
31 May 2023
This is what 3 clouds look like ON CHART
I know it's a mess but thats what happens ha ha ha
Macd Cloud ON Chart
0
0
10
free
31 May 2023
This is what the MACD looks like set onto a chart.
Using the BARS close as the center line
the orange line in this picture is a MA set to 1 for refferance
paid
26 May 2023
Introducing the Candlestick Patterns Alerts for cTrader: A powerful and user-friendly indicator designed to assist traders in identifying key candlestick patterns in real-time. This indicator automates the process of recognizing 34 different candlestick patterns, ranging from doji patterns to engulfing patterns, hammer patterns, star patterns, soldiers and crows patterns, marubozu patterns, inside and outside patterns, harami patterns, tweezer patterns, spinning top, rising and falling methods patterns, window patterns, and neck patterns.
>>>>>>> Get The Indicator Here <<<<<<
With five adjustable levels of pattern detection tolerance, ranging from strict to lenient, traders can customize the indicator to suit their individual preferences and trading strategies. The trend detection feature allows users to consider or disregard the market trend when identifying patterns, providing valuable insights for trend-based trading approaches.
To enhance visual clarity, this indicator offers three color options, allowing users to assign distinct colors for bullish, bearish, and neutral patterns. Additionally, the option to use abbreviated pattern names improves chart visibility, ensuring a seamless trading experience.
For easy reference and analysis, the indicator provides an on-chart list of pattern abbreviations, conveniently displaying the currently detected patterns. Traders can effortlessly position this list anywhere on the chart for quick access.
Never miss a potential trading opportunity with the comprehensive alert system included in this indicator. Users can enable alerts for pattern formations, with options for sound alerts, pop-up notifications, Telegram messages, and email notifications. Moreover, the "Stop all alerts" feature allows users to temporarily disable all alerts with a single click, offering flexibility and control.
Here is a list of the features of this indicator:
Real-time candlestick pattern detection for 34 different patterns.
Adjustable pattern detection tolerance with five levels of strictness.
Automatic trend detection with the option to consider or disregard trends.
Customizable colors for bullish, bearish, and neutral patterns.
Option to use abbreviated pattern names for improved chart visibility.
On-chart list of pattern abbreviations for quick reference and analysis.
Alerts for pattern formations with sound, pop-up, Telegram, and email notifications.
"Stop all alerts" feature to enable or disable all alert types with a single parameter.
And here is a list of all the patterns this indicator can detect:
Four-Price Doji
Standard Doji
Long-Legged Doji
Dragonfly Doji
Gravestone Doji
Hammer
Shooting Star
Inverted Hammer
Hanging Man
Piercing Pattern
Dark Cloud Cover
Bullish Engulfing
Bearish Engulfing
Morning Star
Evening Star
Three White Soldiers
Three Black Crows
White Marubozu
Black Marubozu
Three inside Up
Three inside Down
Three outside Up
Three outside Down
Bullish Harami
Bearish Harami
Tweezer Top
Tweezer Bottom
Spinning Top
Rising Three Methods
Falling Three Methods
Rising Window
Falling Window
Bullish on Neck
Bearish on Neck
If you don't know much about candlestick patters, you can start with these links:
https://blog.elearnmarkets.com/35-candlestick-patterns-in-stock-market/
https://www.investopedia.com/articles/active-trading/092315/5-most-powerful-candlestick-patterns.asp
In summary, the Candlestick Pattern Detector for cTrader is a reliable and customizable tool that simplifies pattern recognition in real-time. It empowers traders of all levels to make informed trading decisions by automatically detecting a wide range of candlestick patterns, providing customizable filtering options, trend consideration, visual clarity, and robust alert capabilities. Maximize your trading potential and gain a competitive edge with this indispensable indicator.
>>>>>>> Get The Indicator Here <<<<<<
Here you can learn how to configure the telegram and the email alerts:
Telegram Alerts
Email Alerts
Check out my projects:
Indicators:
cTrader Fibonacci Alerts
cTrader Moving Average Alerts
cTrader Bar Close Alert Manager
cTrader Unlimited Trendline Alerts
cTrader Candlestick Patterns Alerts
cBots:
cTrader Profit Defender
Exporting Optimization
0
0
43
free
21 May 2023
Greetings Traders,
In an effort to enhance your trading experience, I am excited to share a couple of methods that can be integrated into your cBots for the purpose of exporting key performance metrics such as Profit Factors, Sharpe Ratios, and Net Profits after running an optimization. The aim is to provide you with a comprehensive overview of your trading strategies' performance, assisting you in making informed decisions.
Additionally, I am thrilled to introduce a unique application that I have developed. This application utilizes the power of Hypothesis Testing to evaluate the profitability of your trading strategies' premise. It provides a simple yet robust approach to understanding the potential success of your strategies.
this application is entirely free to use! However, if you find it beneficial and it contributes to your success, I kindly encourage you to consider making a small donation to our website. Your support will greatly help us continue to develop and provide helpful tools like this to the trading community.
Should you have any questions, suggestions, or need further assistance, please don't hesitate to reach out to me at info@sinalgolab.com. Your feedback is greatly appreciated and will help us improve and cater to your needs better.
Thank you for your continued support and happy trading!
Check my Blog about Hypothesis-Testing of Trading Strategies Here:
Check my Blog about Backtesting and Overfitting Here
Download the Application for free Here
Check my Divergence Indicator Here
Check my Candlestick Patterns Indicator Here
Check our Website here: sinalgolab.com
Mo from Singularity Algo Lab
Transform Domain
5
5
65
by Abstract
free
25 May 2023
This indicator transforms values from any indicator at the bottom of the screen into profiles in the main window. See images below.
The profiles can be customized according to your likings: color, width, height, vertical scale (PIPs) and shift back.
In the field 'Source' is specified the indicator to be shown in the main window.
Fractals
0
0
94
free
15 May 2023
DCT - Fractals.
To indicate fractal highs or lows using built in display or Arrow Up/Down icon.
Ability to change fractal periods 3,5,7,9 as needed.
Repaints current fractal until confirmed at close.
Built using CTrader 4.7.9 with c# .Net 6
Sample Telegram Function
0
5
106
by aksbenz
free
30 Apr 2023
Use the below Telegram function to send telegram messages in your Indicator.
Search on google on how to create Token using BotFather and get ChatId
public void SendTelegram(String Token, String ChatId, String msg)
{
try
{
HttpRequest req = new(new($"https://api.telegram.org/bot{Token}/sendMessage?chat_id={ChatId}&text={msg}"));
req.Method = HttpMethod.Post;
var res = Http.Send(req);
if (!res.IsSuccessful)
msg += $": Error Sending Telegram Message: {res.StatusCode}, {res.Body}";
else
msg += ": Success";
}
catch (Exception e)
{
msg += ": EXCEPTION : " + e.Message + "\n\n" + e.StackTrace;
}
Print(msg);
}
by aksbenz
free
17 Apr 2023
Show Symbol name and Timeframe name as a chart background.
With multiple charts open, it was a hassle to see the tab name for Symbol name, so I created this small indicator to
show the Symbol name and Timeframe as a chart background
The Font size and color are adjustable.
Let me know in comments for any updates.
Pivot w optional CPR and Mids
3
5
422
by dhnhuy
free
26 Apr 2023
Conventional Pivot, CPR and Mid levels are optional.
Supported Day, Week and Month pivot.
PivotTimeFrame: Day, Week, Month.
ShowCPR: If Yes, also plot the Central Pivot Range levels.
ShowMids: If Yes, also plot the Mid levels.
Updated 26 Apr 2023:
Auto enforce PivotTimeFrame to avoid slow drawing:
If current TF > Hour: use Week pivot.
If current TF > Hour4: use Month pivot.
Zone: Ctrl + Click to toggle zone drawing in the dedicated pivot area. Zones are equally divided between 2 key levels.
LT_Ind_Diff
0
5
163
by dhnhuy
free
26 Apr 2023
Plot the difference between 2 signals.
Can select any sources with different shifting for each source.
Example 1: Visualize the Kumo Future:
Example 2: A simple momentum measurement:
Example 3: The Aroon Oscillator
Copyright © 2023 Spotware Systems Ltd. All rights reserved.