Lean  $LEAN_TAG$
ZerodhaFeeModel.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  /// Provides the default implementation of <see cref="IFeeModel"/> Refer to https://www.samco.in/technology/brokerage_calculator
20  /// </summary>
22  {
23  /// <summary>
24  /// Brokerage calculation Factor
25  /// </summary>
26  protected override decimal BrokerageMultiplier => 0.0003M;
27 
28  /// <summary>
29  /// Maximum brokerage per order
30  /// </summary>
31  protected override decimal MaxBrokerage => 20;
32 
33  /// <summary>
34  /// Securities Transaction Tax calculation Factor
35  /// </summary>
36  protected override decimal SecuritiesTransactionTaxTotalMultiplier => 0.00025M;
37 
38  /// <summary>
39  /// Exchange Transaction Charge calculation Factor
40  /// </summary>
41  protected override decimal ExchangeTransactionChargeMultiplier => 0.0000345M;
42 
43  /// <summary>
44  /// State Tax calculation Factor
45  /// </summary>
46  protected override decimal StateTaxMultiplier => 0.18M;
47 
48  /// <summary>
49  /// Sebi Charges calculation Factor
50  /// </summary>
51  protected override decimal SebiChargesMultiplier => 0.000001M;
52 
53  /// <summary>
54  /// Stamp Charges calculation Factor
55  /// </summary>
56  protected override decimal StampChargesMultiplier => 0.00003M;
57 
58  /// <summary>
59  /// Checks if Stamp Charges is calculated from order valur or turnover
60  /// </summary>
61  protected override bool IsStampChargesFromOrderValue => true;
62  }
63 }