Description
This is an indicator for cTrader.
Colored MovingAverage enables you to analyze the trend visually.
In addition to 8 basic MAs, 2 types of advanced MA are available.
-Supported MA-
・Simple MovingAverage (MAType number: 1)
・Exponential MovingAverage (MAType number: 2)
・Hull MovingAverage (MAType number: 3)
・TimeSeries MovingAverage (MAType number: 4)
・Triangular MovingAverage (MAType number: 5)
・VIDYA (MAType number: 6)
・Weighted MovinAverage (MAType number: 7)
・Welles Wilder Smoothing (MAType number: 8)
・Least Square MovingAverage (MAType number: 9)
・Smoothed MovingAverage (MAType number: 10)
If you have any problems or questions, please let us know in the comments.
Notice:It does not guarantee any particular outcome or profit of any kind. Please enjoy trading at your own risk.
Download from here
© 2020, Taro Yamada, taro.yamada.forex@gmail.com
We can also take orders for algorithm development.
Please feel free to contact us.
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class Link_HandyMovingAverages : Indicator
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
[Output("Main")]
public IndicatorDataSeries Result { get; set; }
protected override void Initialize()
{
ChartObjects.DrawText("Handy MovingAverages", "Please download Free Trial ver. or Complete ver. from here: https://gum.co/QkVsR", StaticPosition.Center, Colors.Red);
// Initialize and create nested indicators
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
akamanbow3
Joined on 17.09.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Link_Handy MovingAverages.algo
- Rating: 0
- Installs: 1138
- Modified: 13/10/2021 09:54