Auto Calculate Lots Size + Order Button paid
Description
This is a system that automatically calculates the lot size when the stop loss line and the risk percent of A/C are fixed.
New features of Ver3
Added order button,market order,pre-order,limit/stop order.
YouTube:
Price:$13
Another indicators:
Auto Calculate Lot size +SL and TP Line
MTF OHLCFP Lines Candles Before
Static Label and Horizon Linde
Upper TF Heikin-ashi Bull Bear
Best Regars
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 AutoCalculateLotsample : Robot { protected override void OnStart() { } protected override void OnTick() { } protected override void OnStop() { Chart.DrawStaticText("Purchase from the link on gumroad", "", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Black); } } }
Comments