Close all positions. Returns an indication whether the positions are closed successfully.
SYNTAX
public bool CloseAll ()
RETURN
bool true if all positions closed successfully; otherwise, false.
EXAMPLE
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace PositionCollection_ { public class PositionCollection_:NETStrategy { Instrument instr; Account acc; NewOrderRequest request; Position lastPosByOrder; string ordID = "-1", posID; public override void Init() { instr = Instruments.Current; acc = Accounts.Current; Instruments.Subscribe(instr, QuoteTypes.Quote); } public override void OnQuote() { if (ordID == "-1") { request = new NewOrderRequest { Instrument = instr, Account = acc, Side = Operation.Buy, Type = OrdersType.Market, Price = instr.LastQuote.Ask, Amount = 1, TimeInForce = TimeInForce.GTC, MarketRange = 1000, }; ordID = Orders.Send(request); if (ordID == "-1") { Alert("Order was't open, error: " + GetLastError()); return; } else { lastPosByOrder = Positions.GetPositionByOpenOrderId(ordID); posID = lastPosByOrder.Id; Alert("Order set on price: " + lastPosByOrder.OpenPrice); } } } public override void Complete() { Positions.CloseAll(); Instruments.Unsubscribe(instr, QuoteTypes.Quote); } } }