H1, M5 EURUSD scalping 300 %/year paid
Description
EURUSD scalping EA, use trade gold with good profit, minimum balance is 1000$ with lot
0.01, on M5,H1
To download the FREE demo Version please visit: https://gum.co/fzETJo
To download the PRO Version please visit: https://gum.co/JIqBF
With source code https://gum.co/xBtWR
Contacts please write to: nghiand.amz@gmail.com
Monthly
Year
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 DragonScalpingOnline : Robot { protected override void OnStart() { // Put your initialization logic here if (RunningMode == RunningMode.RealTime || RunningMode == RunningMode.VisualBacktesting) { Chart.DrawStaticText("download", "\n\n\n\n To download FREE the demo Version please visit: https://gum.co/fzETJo \n\nTo download the PRO Version please visit: https://gum.co/JIqBF " + "\n\n with source code https://gum.co/xBtWR \n\n Contacts please write to: nghiand.amz@gmail.com", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Yellow); } } protected override void OnBar() { } protected override void OnTick() { // Put your core logic here } protected override void OnStop() { // Put your deinitialization logic here } } }
Comments