Lean  $LEAN_TAG$
RandomPriceGenerator.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 
16 using System;
18 
20 {
21  /// <summary>
22  /// Random pricing model used to determine the fair price or theoretical value for a call or a put option
23  /// </summary>
25  {
26  private readonly Security _security;
27  private readonly IRandomValueGenerator _random;
28 
29  /// <summary>
30  /// Creates instance of <see cref="RandomPriceGenerator"/>
31  /// </summary>
32  ///<param name="security"><see cref="Security"/> object for which to generate price data</param>
33  /// <param name="random"><see cref="IRandomValueGenerator"/> type capable of producing random values</param>
35  {
36  _security = security;
37  _random = random;
38  }
39 
40  /// <summary>
41  /// <see cref="RandomPriceGenerator"/> is always ready to generate new price values as it does not depend on volatility model
42  /// </summary>
43  public bool WarmedUp => true;
44 
45  /// <summary>
46  /// Generates an asset price
47  /// </summary>
48  /// <param name="maximumPercentDeviation">The maximum percent deviation. This value is in percent space,
49  /// so a value of 1m is equal to 1%.</param>
50  /// <param name="referenceDate">date used in price calculation</param>
51  /// <returns>Returns a new decimal as price</returns>
52  public decimal NextValue(decimal maximumPercentDeviation, DateTime referenceDate)
53  => _random.NextPrice(_security.Symbol.SecurityType, _security.Symbol.ID.Market, _security.Price, maximumPercentDeviation);
54  }
55 }