Description
To get the indicator go to https://t.me/DOMMEFX
In this version you get sound notifications, download the 2 audio files on the links below
then put the audio files in "C:/Windows/Media/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo
{
[Indicator(AccessRights = AccessRights.None)]
public class mmversion1 : Indicator
{
[Parameter(DefaultValue = "Hello world!")]
public string Message { get; set; }
[Output("Main")]
public IndicatorDataSeries Result { get; set; }
protected override void Initialize()
{
// To learn more about cTrader Automate visit our Help Center:
https://t.me/DOMMEFX
Print(Message);
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] =
}
}
}
The author decided to hide the source code.
dokinya
Joined on 09.04.2018 Blocked
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: mmversion1.algo
- Rating: 5
- Installs: 0
- Modified: 07/10/2023 16:52