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 09.11.2022
- Type: Free
- Language: C#
- Trading Platform: cTrader Automate
- Filename: Get _UserID_For_SuperBot.algo
- Rating: 0
- Downloads: 637
Warning! Executing cBots downloaded from this section may result in loss of funds. Use them at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Comments
Only logged in users can post 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.