Lean  $LEAN_TAG$
GetMaximumLotsForTargetBuyingPowerParameters.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
17 {
18  /// <summary>
19  /// Defines the parameters for <see cref="IPositionGroupBuyingPowerModel.GetMaximumLotsForTargetBuyingPower"/>
20  /// </summary>
22  {
23  /// <summary>
24  /// Gets the algorithm's portfolio manager
25  /// </summary>
27 
28  /// <summary>
29  /// Gets the position group
30  /// </summary>
31  public IPositionGroup PositionGroup { get; }
32 
33  /// <summary>
34  /// The target buying power.
35  /// </summary>
36  /// <remarks>Sign defines the position side, positive long, negative short side.</remarks>
37  public decimal TargetBuyingPower { get; }
38 
39  /// <summary>
40  /// True enables the <see cref="IBuyingPowerModel"/> to skip setting <see cref="GetMaximumLotsResult.Reason"/>
41  /// for non error situations, for performance
42  /// </summary>
43  public bool SilenceNonErrorReasons { get; }
44 
45  /// <summary>
46  /// Configurable minimum order margin portfolio percentage to ignore bad orders, orders with unrealistic small sizes
47  /// </summary>
48  /// <remarks>Default value is 0. This setting is useful to avoid small trading noise when using SetHoldings</remarks>
49  public decimal MinimumOrderMarginPortfolioPercentage { get; }
50 
51  /// <summary>
52  /// Initializes a new instance of the <see cref="GetMaximumLotsForTargetBuyingPowerParameters"/> class
53  /// </summary>
54  /// <param name="portfolio">The algorithm's portfolio manager</param>
55  /// <param name="positionGroup">The position group</param>
56  /// <param name="targetBuyingPower">The target buying power</param>
57  /// <param name="minimumOrderMarginPortfolioPercentage">Configurable minimum order margin portfolio percentage to ignore orders with unrealistic small sizes</param>
58  /// <param name="silenceNonErrorReasons">True will not return <see cref="GetMaximumLotsResult.Reason"/>
59  /// set for non error situation, this is for performance</param>
61  SecurityPortfolioManager portfolio,
62  IPositionGroup positionGroup,
63  decimal targetBuyingPower,
64  decimal minimumOrderMarginPortfolioPercentage,
65  bool silenceNonErrorReasons = false
66  )
67  {
68  Portfolio = portfolio;
69  PositionGroup = positionGroup;
70  TargetBuyingPower = targetBuyingPower;
71  SilenceNonErrorReasons = silenceNonErrorReasons;
72  MinimumOrderMarginPortfolioPercentage = minimumOrderMarginPortfolioPercentage;
73  }
74 
75  /// <summary>
76  /// Creates a new <see cref="GetMaximumLotsResult"/> with zero quantity and an error message.
77  /// </summary>
78  public GetMaximumLotsResult Error(string reason)
79  {
80  return new GetMaximumLotsResult(0, reason, true);
81  }
82 
83  /// <summary>
84  /// Creates a new <see cref="GetMaximumLotsResult"/> with zero quantity and no message.
85  /// </summary>
87  {
88  return new GetMaximumLotsResult(0, string.Empty, false);
89  }
90 
91  /// <summary>
92  /// Creates a new <see cref="GetMaximumLotsResult"/> with zero quantity and an info message.
93  /// </summary>
94  public GetMaximumLotsResult Zero(string reason)
95  {
96  return new GetMaximumLotsResult(0, reason, false);
97  }
98 
99  /// <summary>
100  /// Creates a new <see cref="GetMaximumLotsResult"/> for the specified quantity and no message.
101  /// </summary>
102  public GetMaximumLotsResult Result(decimal quantity)
103  {
104  return new GetMaximumLotsResult(quantity, string.Empty, false);
105  }
106  }
107 }