Auto Calculate Lots Size free
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.
Donation from free
download from Gumroad
YouTube
free download from here↓↓↓↓↓↓↓
Another indicators:
Auto Calculate Lot size +SL and TP Line
MTF OHLCFP Lines Candles Before
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 cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class Autocalculatelotssample : Indicator { protected override void Initialize() { Chart.DrawStaticText("AutocalculateLots", "Please download from the link above.", VerticalAlignment.Top, HorizontalAlignment.Center, Color.Red); } public override void Calculate(int index) { } } }
Comments