Description
This is a simple indicator from E7 Academy, use it if you need to get your cTrader ID. Your cTrader ID will be located at the top of the chart in lime green. Simply add this indicator to a chart or add an instance to this indicator. Happy hunting.
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class E7cTraderUserID : Indicator
{
protected override void Initialize()
{
Chart.DrawStaticText("\t", "Your cTrader User ID is : " + this.Account.UserId.ToString(), VerticalAlignment.Top, HorizontalAlignment.Center, Color.Lime);
}
//////////////////////////////////////////////
public override void Calculate(int index)
{
///
}
}
}

E7 Academy
Joined 26.10.2014
- Type: free
- Language: C#
- Trading Platform: cTrader Automate
- Filename: E7 cTrader User ID.algo
- Rating: 5
- Downloads: 682
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
Comments not found