Scalping bot with profit 400% per year paid
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
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 } } }

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!

https://help.ctrader.com/ctrader-automate/guides/access_rights
I use full FullAccess just to show message box and save license when I need.