Category Trend  Published on 09/11/2021

GBPUSD M15 - 500% per year or more

Description

Hello,

This robot is very very good for all.

 

SL: only 35 pips

TP: 120 pips

 

No martingale, or grid. I have trade only GBPUSD. 

Check youtube backtesting:

 

 

My robot cost $99 without source code
With source code $299

I can accept paypal or credit card.

If you will order you will get support from me, don't worry.

Send me message to support@desoftltd.com

You can use 0.01 with max position 1 and you will get really small DD. This is your decision.

Regards,

Dejan

 


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

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

        protected override void OnStart()
        {
            //Please contact me on support@desoftltd.com
        }

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

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}


PR
progy85

Joined on 07.01.2021 Blocked

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: D1.algo
  • Rating: 0
  • Installs: 879
  • Modified: 09/11/2021 12:15
Comments
Log in to add a comment.
DA
daedalus09 · 2 months ago

Did you use accurate tick data or m1 bar data for backtesting? And do you use it yourself on a live account? 

02
021diego · 2 years ago

Which code did you use to limit the amount of positions, could you just pass me this part of the code, I'm doing mine but I have this difficulty.I thank you for your attention.