DELTAPLAN paid

by KRATX.COM in category Range at 19/11/2020
Description

DELTAPLAN - 2Way High-Frequency cBot​

The strategy uses a bi-directional high-frequency trading.

Without the increase the volume, grid and martingale-type systems.

For more information visit

https://www.kratx.com/deltaplane

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

The strategy is based on successive cycles of buying and selling . Each cycle is created whenever the previous cycle ended. The cycles are alternated taking profit with minimal price fluctuations in both directions with a constant value of the volume.

+ Improved algorithm added logic for closing open trades, and risk management when the loss limit is reached.

​+ Also added a unique strategy for alternating fast and slow trailing.

​+ The coefficients of dependence on the Delta channel expansion on the maximum number of orders are introduced.

Warning! Executing the following cBot may result in loss of funds. Use it 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.
Formula / Source Code
Language: C#
Trading Platform: cAlgo
using System;
using System.Linq;
using cAlgo.API;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;
using cAlgo.Indicators;

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


        protected override void OnStart()
        {
            ChartObjects.DrawText("AlgoDeveloper", "Please look at this cBot from Kratx.com", StaticPosition.Center, Colors.Red);
        }

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

        protected override void OnStop()
        {

        }
    }
}
Comments
0