DELTAPLAN paid
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.
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() { } } }