Description
This cTrader Hammer Candlestick Pattern Detector Indicator will identify price reversals after a bearish trend and inform the trader of the event in the form of a popup message to the screen, email, instant Telegram bot-message or a text message using SMS. This detection software has more under the hood than just a simple hammer detection, it also checks the previous number of bearish candles and uses a special EMA formula.
DOWNLOAD THE HAMMER CANDLESTICK PATTERN DETECTOR
INSTANT ALERTS WITH EMAIL, TELEGRAM AND SMS TEXT
We also provide educational material to learn how to trade using Hammer candlesticks.
How to Trade Using Hammer Candlestick Patterns
Why not watch a video tutorial which will explain the tool in more detail?
Download the indicator by clicking on the link below
DOWNLOAD THE HAMMER CANDLESTICK PATTERN DETECTOR
Contact: instant chat group
Website: https://clickalgo.com
Twitter | Facebook | YouTube | Pinterest | LinkedIn
using cAlgo.API;
using System.Windows.Forms;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class ClickAlgoIndicator : Indicator
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
[Output("Main")]
public IndicatorDataSeries Result { get; set; }
protected override void Initialize()
{
var ret = MessageBox.Show("It is not possible to download the software from the cTDN website. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (ret == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https://clickalgo.com/hammer-candlestick-indicator");
}
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
ClickAlgo
Joined on 05.02.2015
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: ClickAlgo Indicator.algo
- Rating: 3.33
- Installs: 2362
- Modified: 13/10/2021 09:54