Category Trend  Published on 31/08/2021

Alpha Trend Trader

Description

This trading bot uses cTrader as platform to trade on. It is a fully automated trading robot that employs a trend following strategy using pullbacks for entry. Stop losses and take profits are set automatically. Trades are opened and closed automatically.

It employs advanced money management to enhance profits and the trading strategy employed has a definite edge on the markets. It trades the stock market (specifically stock indices) and has been optimized on the US500 and NASDAQ100 using tick data. Do not use this bot on other markets. You are welcome to explore other stock index markets and can optimize the parameters to get a good fit. This strategy should be traded on the daily timeframe. The strategy does not take a lot of trades but is very accurate when it does, meaning and increased risk per trade can be considered.

Some simulated results:

  • US500 - Starting capital 10 000 - 2% risked per trade - Results: +54% growth since June 2016 ( used all available data on my broker) with an max equity drawdown of 6.00%. Commissions included. When using 5% risk per trade the profits increase to 185% over this period, while the max equity drawdown increase to 14.93% showing profits increased more in relation to drawdown.
  • NASDAQ100 - Starting capital 10 000 - 5% risked per trade - Results: 96% growth since Nov 2015 ( used all available data on my broker) with an max equity drawdown of 12.84%. Commissions included. When using 10% risk per trade the profits increase to 255% over this period, while the max equity drawdown increase to 25.74% showing profits increased more in relation to drawdown.

The above is indicative of proper risk management being applied in this trading bot.

The conservative trader can reduce capital risked per trade to still achieve awesome profits at reduced exposure / drawdown.

Suggested set files included in purchase. See screen shots of simulated results below.

US500_1

US500_2

US500_3

NASDAQ100_1

NASDAQ100_2

NASDAQ100_3

 

Demo version available upon request.

 

Use this bot at own risk and always do demo trading first before employing this bot on your live account!!!

 

The first 10 purchases of this robot will get a discount of 10% using the discount code profits100 !!!

 

Buy this bot at nickachino5.gumroad.com/l/wMIyS


using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class AlphaTrendTrader : Robot
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }


        protected override void OnStart()
        {
            ChartObjects.DrawText("Ahoy", "Purchase this cBot at nickachino5.gumroad.com/l/wMIyS", StaticPosition.Center, Colors.Red);
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {

        }
    }
}


Nickachino's avatar
Nickachino

Joined on 03.04.2017

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: New cBot.algo
  • Rating: 0
  • Installs: 882
Comments
Log in to add a comment.
NM
nmittra · 2 years ago

Where can i request a demo?

NM
nmittra · 2 years ago

Does this only do long trades. No short trades seem to be there in the screenshots.