Arthur Asenheimer
Arthur Asenheimer
I thought about it and came to the conclusion that it might be more robust to use `security.FillModel` instead since users can have their own custom fill models where the...
Hey @Martin-Molinero , @AlexCatarino , Thanks a lot for your feedback. I see now there is no simple solution for this problem. >If the algorithm calculated the order quantity with...
> It would be nice to have something like > > ``` > self.SetHoldings(option_strategy, 1) > ``` > > so we can maximize the position size. And please also consider...
Hi @Martin-Molinero one possible use case would be the following: ```Python for indicator in indicators: if not isinstance(indicator, BarIndicator): indicator.update(bar.end_time, bar.value) continue indicator.update(bar) ``` So, if we have a list...
I'm revisiting this topic again because it recently presented a limitation once more. Just to clarify, in case it wasn't clear: the issue here is that for indicators expecting an...
@AlexCatarino @Martin-Molinero It seems this has been resolved. I recently tested it again and was able to update indicators such as SMA, EMA, etc. directly with `TradeBar` as input. Thanks...
@Martin-Molinero I think this is a great idea and it would benefit most users. I just want to add a suggestion and I don't want to open a new ticket...
I want to emphasize that this feature is important and useful. Margin requirements are a complex matter, as you are surely aware. They can be highly individual and depend on...
Hi @Martin-Molinero, I've received the following response from IB: Apparently, there are other account value keys (like `SettledCash `and `TotalCashValue`) that provide a more accurate representation of cash/NLV and enables...
3. The InsightManager is supposed to be cleaned up regularly to only keep the last active insight for each (AlphaModel, Symbol) pair. I don't see a use case where people...