Category Other  Published on 27/02/2021

cTrader Risk & Reward Charting Tool

Description

The new Long & Short pending order and position drawing tool for cTrader is finally here, this highly demanded feature lets you estimate your risk & reward at a glance before you place a long or short trade. It shows the Profit & Loss (PnL) and estimates risk and closing account balance when the price reaches your profit target or stop-loss levels. Now with extra features which allow you to calculate your risk for stop and limit pending orders as well as submit and manage the orders using the tool.

 

Why is This Charting & Trading Tool Such a Game Changer?

The most useful feature of this tool is that you can set the amount you want to risk per trade as either money or as a % of your account, once this is completed in the settings panel as shown below, the risk/reward tool will re-adjust your position size so that no matter where you position your stop loss your risk stays the same. With this invaluable tool, you can act in a fast moving market knowing you are not risking more then you set out to do at the start of the trading.

CLICK HERE TO DOWNLOAD THE CHARTING TOOL

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


using cAlgo.API;
using System.Windows.Forms;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
    public class ClickAlgoIndicator : Indicator
    {
        [Parameter(DefaultValue = 0.0)]
        public double Parameter { get; set; }

        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }


        protected override void Initialize()
        {
            var ret = MessageBox.Show("It is not possible to download the software from the cTDN website. Would you like to visit us at ClickAlgo.com where you can download it?", "Downloading...", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

            if (ret == DialogResult.Yes)
            {
                System.Diagnostics.Process.Start("https://clickalgo.com/risk-reward-tool");
            }
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }

    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Indicator.algo
  • Rating: 4.17
  • Installs: 4632
Comments
Log in to add a comment.
YA
yabozdar · 3 years ago

When installed it shows as "new software" in custom indicator list. Is there any way to rename it?