Category Trend  Published on 29/05/2021

Trend Master V1

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's avatar
claye.weight

Joined on 02.08.2019

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: Trend Master.algo
  • Rating: 0
  • Installs: 1468
Comments
Log in to add a comment.
DW
dw9744897 · 2 years ago

hi claye, how can i contact you please?

TE
Terzys · 4 years ago

Hello boss

 

I'm requesting the script for backtesting. Thanks in advance.

RA
ravirajchenna · 4 years ago

KINDLY SHARE THE SCRIPT I WANT TO BACKTEST

 

JO
JoaoPSilva · 4 years ago

Im gone test this

MA
mads127 · 4 years ago

Hello can i try out the script :)?

claye.weight's avatar
claye.weight · 4 years ago
Obviously the above script isn't the actual script. Again, leave a comment or send me a message for the script.