Description
Scalping bot with profit 400% per year.
Demo Version free for demo account or backtest: https://gum.co/XqaEy
Pro Version: https://gum.co/rApwR
Pro Version with source code: https://gum.co/SylIk
Contact me at :
Email: nghiand.amz@gmail.com
Telegram: +84 969228100
Parameters:
Lots: Lot size to trade
AutoLot: bot automatic calculate lot size
TakeProfitPip: Take profit by pips
UseEquityStop: Bot auto close all position if Equity draw down TotalEquityRisk %
TotalEquityRisk: max Equity draw down by %
PipStep: Max pip lost, if reach it the volume will change
LotExponent: the volume change after reach PipStep
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 DragonScalpingOnline : Robot
{
protected override void OnStart()
{
// Put your initialization logic here
if (RunningMode == RunningMode.RealTime || RunningMode == RunningMode.VisualBacktesting)
{
Chart.DrawStaticText("download", "\n\n\n\n To download the demo Version please visit: https://gum.co/XqaEy \n\nTo download the PRO Version please visit: https://gum.co/rApwR " + "\n\nContacts please write to: nghiand.amz@gmail.com", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Yellow);
}
}
protected override void OnBar()
{
}
protected override void OnTick()
{
// Put your core logic here
}
protected override void OnStop()
{
// Put your deinitialization logic here
}
}
}
nghiand.amz
Joined on 06.07.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: DragonScalpingOnline.algo
- Rating: 0
- Installs: 1423
- Modified: 13/10/2021 09:54
Comments
https://help.ctrader.com/ctrader-automate/guides/access_rights
I use full FullAccess just to show message box and save license when I need.
I understand that you dont want to show source code in demo version. But please explain why it requires full access? No way im installing anything like that!
I've this scalping bot for one month and it really works well on synthetic derivatives like Boom 900 CFD. I have not experienced any loss on this cBot.