Auto Calculate Lots V3.5 自動ロット計算 paid
This is a system that automatically calculates the lot size when the stop loss line and the risk percent of A/C are fixed.
Click here for a demo account free trial version with all features
損切ラインを決めてロットを自動計算してくれるcBotになります。リスク金額は証拠金の%か、直接入力となります。
すべての機能が使えるデモ口座用無料トライアルバージョンはこちら
↓ Live account product version ↓ ↓ ライブアカウント用 製品版 ↓
Price: $18
Ver3.1
add features
・control all orders in one trade panel
・add close positions button
Ver3.2
add features
・add risk % A/C and entry amount in trading panel
ver3.3
add features
・add max lots and max spread control function
・add position information
Ver3.4
add features
・take profit line on/off
・Two types of order when max lots are set
・support all symbols in ICMarkets
Ver3.5
add features
・Function to close from a position with bad conditions
・Function to include commission in lot calculation
・Addition of display function for profit /loss 0 line
・Addition of buttons related to profit /loss cut line
・Customize trading panel
V3.1 introduction video
V3.2 introduction video
V3.3 introduction video
V3.4 introduction video
V3.5 introduction video
Another indicators:
MTF OHLCFP Lines Candles Before
Static Label and Horizon Linde
Upper TF Heikin-ashi Bull Bear
Best Regars
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); } } }