Category Range  Published on 26/02/2021

cTrader Polynomial Regression Trading

Description

This is a semi-automated trading robot which has been voted by traders as a must-have product after we provided the trade signals cBot using the Polynomial Regression Channels. This method of following the trend as soon as the price enters the channel can outperform in-and-out trading often performed by traders thinking they can guess when the market will turn.

Product Page: https://clickalgo.com/ctrader-polynomial-regression-trade-helper

Support Page: https://clickalgo.com/ctrader-prc-auto-helper-how-it-works

YouTube Videohttps://youtu.be/-TO4A_umatA

cTrader Polynomial Regression Trading Robot

The word PRC stands for Polynomial Regression Channel. This is a regression indicator that is used on charts. A linear regression indicator draws a straight line of best fit on a chart. The PRC indicator applies the polynomial function to the linear regression functions to adapt itself to market flow. Since they are regression bands that self adjust for volatility.

The markets can be very unpredictable, but one area that we can help is to allow you to configure the trading robot to close any open positions and not trade before, during and after a major high-impact news event.

If you are looking for trade signals instead of automated trading then click here

 

Contactinstant chat group
Websitehttps://clickalgo.com

ClickAlgo

Twitter | Facebook | YouTube | Pinterest | LinkedIn

 


using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
using System.Windows.Forms;
using System.Threading;

// To download the software please visit: https://clickalgo.com/ctrader-polynomial-regression-trade-helper

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

        private static Mutex dialogMutex = new Mutex();
        private static bool dialogIsShownOnce = false;

        protected override void OnStart()
        {
            ShowDialogBox();
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }

        public static void ShowDialogBox()
        {
            dialogMutex.WaitOne();

            if (dialogIsShownOnce)
                return;

            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/ctrader-polynomial-regression-trade-helper");
            }

            dialogIsShownOnce = true;

            dialogMutex.ReleaseMutex();
        }
    }
}


ClickAlgo's avatar
ClickAlgo

Joined on 05.02.2015

  • Distribution: Paid
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: ClickAlgo Software.algo
  • Rating: 2.5
  • Installs: 1221
Comments
Log in to add a comment.
SE
seatrade.mlmalixi · 8 months ago

there no expiration once i avail the polynomial channel. tnx