Description
Trend Master is a new bot that I've developed and even with it being in the early development, It's quite profitable. It uses multiple different moving averages to determine the trend by calculating the current distance between the moving averages now verses the past. The bot uses this information to determine the perfect time to initiate a short (Currently the bot only shorts, I'm working on adding in long too). Once in a position it places a fixed stop as well as a moving average cross over stop, with two profit targets.
Trend Master V1
- Uses 5 Moving Averages to calculate trend
- Identifies optimal entry point
- Fixed and Moving Average cross over stop loss
- 2 Profit targets
Currently profitable with AUDUSD on 15min Timeframe.
Purchase this robot now!
Future Updates:
- Adding Longs (aiming to improve total trades by 50%)
- More places to initiate a short with the given MAs
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;
//Script
namespace cAlgo
{
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class TrendMaster : Robot
{
[Parameter(DefaultValue = 0.0)]
public double Parameter { get; set; }
private static Mutex dialogMutex = new Mutex();
private static bool dialogIsShownOnce = false;
protected override void OnStart()
{
ShowDialogBox();
}
public static void ShowDialogBox()
{
dialogMutex.WaitOne();
if (dialogIsShownOnce)
return;
var ret = MessageBox.Show("Send me a message on Instagram to get the script. Press Yes to go to my Instagram.", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (ret == DialogResult.Yes)
{
System.Diagnostics.Process.Start("https:www.instagram.com/clayeweight");
}
dialogIsShownOnce = true;
dialogMutex.ReleaseMutex();
}
}
}
claye.weight
Joined on 02.08.2019
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Trend Master.algo
- Rating: 0
- Installs: 1468
- Modified: 13/10/2021 09:54
Comments
Hello boss
I'm requesting the script for backtesting. Thanks in advance.
KINDLY SHARE THE SCRIPT I WANT TO BACKTEST
Im gone test this
Hello can i try out the script :)?
hi claye, how can i contact you please?