Free The real TSL (trailing-stop-loss)
 0
  5
  2114
by al-n
25 May 2021, 20:12
// this trailing stop allows you to set your steps in 0.1 pips and follows the current market price using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots {     [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]     public class my_tsl :...
Free following bot
 0
  0
  923
by al-n
03 Aug 2022, 18:48
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.None)] public class TrailingStopLossSample : Robot { [Parameter("VolumeInLots", DefaultValue =...
Free following bot
 0
  0
  1387
by al-n
03 Aug 2022, 18:51
this is just a simple bot that opens trades buy/sell and trails with sl in endles loop.