Rename LatestSlice to CurrentSlice

This commit is contained in:
Stefano Raggi
2018-06-05 19:05:40 +02:00
parent 08f28a55cf
commit bbfe7a9beb
4 changed files with 11 additions and 11 deletions
@@ -857,9 +857,9 @@ namespace QuantConnect.AlgorithmFactory.Python.Wrappers
public override string ToString() => _algorithm == null ? base.ToString() : _algorithm.Repr();
/// <summary>
/// Set the latest slice received
/// Sets the current slice
/// </summary>
/// <param name="slice">The Slice object</param>
public void SetLatestSlice(Slice slice) => _baseAlgorithm.SetLatestSlice(slice);
public void SetCurrentSlice(Slice slice) => _baseAlgorithm.SetCurrentSlice(slice);
}
}