Description
Watch Real Backtest of the SuperBot:
Real Backtest - Real Profit
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
namespace cAlgo.Robots
{
[Robot(AccessRights = AccessRights.None)]
public class GetUserId : Robot
{
protected override void OnStart()
{
Print(this.Account.UserId);
var result = MessageBox.Show("To Buy SuperBot with just only 100$ or need any support Please Contact Us (email: kamsamita.com@gmail.com or telegram @TanKhet)", "Date Expired",MessageBoxButton.OK,MessageBoxImage.Warning, MessageBoxResult.OK);
Stop();
}
protected override void OnTick()
{
// Contact me if you want buy the Bot or anything for Support. 24/7
// Contact me : @TanKhet (telegram) or kamsamita.com@gmail.com to start setup SuperBot
// Thanks
}
protected override void OnStop()
{
}
}
}
LE
leokao.com
Joined on 09.11.2022
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: Get _UserID_For_SuperBot.algo
- Rating: 0
- Installs: 967
- Modified: 20/05/2023 09:37
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.
JA
For the back testing video to be accurate you need to run this on tick data and not the 1 minute candles!
yes, i made that mistake early on and found that switching to raw tick data required a pretty major revision on my optimisations and to an extent, my logic!! just be aware.