Lean
Lean copied to clipboard
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
#### Expected Behavior UPI Reported in the portfolio summary statistics at the end of the backtest. #### Actual Behavior Not included in our summary statistics. #### Potential Solution Calculate and...
#### Expected Behavior Key statistics values have 3 decimal places. #### Actual Behavior They vary from 0 to 1.  #### Proposed Solution Move format from...
#### Expected Behavior The "value" field has the value from Order.GetValue method. #### Actual Behavior The multiplier is not taken into account for option: > Time,Symbol,Price,Quantity,Type,Status,Value,Tag 2021-01-08T20:30:00Z,SPXW 210115C03870000,9.1,-5,Market,Filled,-45.5,"CreateIronCondor: Short Call...
#### Expected Behavior - We can retrieve historical (precalculated) intraday greeks and implied vol #### Actual Behavior - We currently support daily historical (preprocessed) greeks and implied vol only ####...
#### Expected Behavior Futures' orders should fill with prices that respect the minimum price variation. #### Actual Behavior Futures' orders should fill with the available price data. #### Potential Solution...
#### Expected Behavior All operators work in comparing indicators. `+`, `-`, `*`, `/`. #### Actual Behavior Only `` work. The other operators require referencing `Current.Value` #### Potential Solution Explore and...
Most indicator properties are of `IndicatorBase` or `IndicatorBase` type, such as `PercentB` for BB. It would be nice if all properties of all indicators would be consistent and constructed in...
#### Expected Behavior Consolidators have a built-in rolling window as Indicators. ```python self.ten_minute_trade = TradeBarConsolidator(10) previous = self.ten_minute_trade[1] self.ten_minute_trade.window.size = 10 first_in_range = self.ten_minute_trade[9] ``` #### Actual Behavior Not supported....
#### Expected Behavior We can simply calculate factor scores for each asset in a universe, where LEAN manages the required dataset and rebalancing for us. ``` class FactorAlgorithm(QCAlgorithm): def __init__(self):...
#### Expected Behavior User is able to change parameters for an algorithm running on live mode and that may be handled by the algorithm to change it's state. For example,...