cTrader Heikin-Ashi Indicator free
Description
This is an improved version of the freely available Heikin-Ashi indicator that is available where the current chart type is automatically hidden on the chart, you will also be able to select one of many bar colours from a list. The Heikin Ashi is a type of charting candlestick that originated in Japan in the 18th century by Munehisa Homma who was a rice trader.
Contact: instant chat group
Website: https://clickalgo.com
Twitter | Facebook | YouTube | Pinterest | LinkedIn
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.
Formula / Source Code
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/heikin-ashi-indicator"); } } public override void Calculate(int index) { // Calculate value at specified index // Result[index] = ... } } }
Comments