Cannot print to log
Created at 03 Oct 2017, 17:37
ST
Cannot print to log
03 Oct 2017, 17:37
Can someone please tell me why the following code does not print the values indicated. Thanks.
using System; using System.Linq; using cAlgo.API; using cAlgo.API.Indicators; using cAlgo.API.Internals; using cAlgo.Indicators; namespace cAlgo.Robots { [Robot()] public class PCAccounttargethit : Robot { [Parameter(DefaultValue = "Account Target Hit cBot")] public string cBotLabel { get; set; } [Parameter()] public DataSeries SourceSeries { get; set; } [Parameter("TargetBalance", DefaultValue = 5000)] public double TargetBalance { get; set; } protected override void OnStart() { } protected override void OnBar() { // Some condition to close all positions if (Account.Equity > TargetBalance) foreach (var position in Positions) ClosePosition(position); } private void PositionsOnClosed(PositionClosedEventArgs obj) { Position closedPosition = obj.Position; if (closedPosition.Label != cBotLabel) return; Print("position closed with {0} gross profit", closedPosition.GrossProfit); Print("Account info:"); Print(Account.Balance); Print(Account.Equity); Print(Account.Margin); Print("Open Positions: " + Positions.Count + "position(s)"); Print("Pending Orders: " + PendingOrders.Count + "order(s)"); Print("Current Balance is {0}, Equity is {1}.", Account.Balance, Account.Equity); } } }
BeardPower
03 Oct 2017, 18:19
Your code does not set the label for the position.
@BeardPower