London breakout Auto Trader paid
Description
London breakout Auto Trader
Contact me for more details at : algomaster7@gmail.com
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
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 LONDONBO : Robot { [Parameter(DefaultValue = 0.0)] public double Parameter { get; set; } protected override void OnStart() { } /* London breakout Auto Trader Contact me at : algomaster7@gmail.com */ protected override void OnTick() { } /* London breakout Auto Trader Contact me at : algomaster7@gmail.com */ protected override void OnStop() { // Put your deinitialization logic here } } }
Comments