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
Warning! Running cBots downloaded from this section may lead to financial losses. Use them at your own risk.
Note that publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section, please use the Copyright Infringement Notification form to submit a claim.
Comments
Log in to add a comment.
02
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.
Did you use accurate tick data or m1 bar data for backtesting? And do you use it yourself on a live account?