So far it needs to create a new indicator for zscore and plot it
Latest posts made by eric2020
-
RE: Plotting a LinesOperationObject
-
RE: Running multiple strategies individually
Got it. Thank you.
BTW, if cerebro separate position and orders for each data feed, does it mean if different timeframe data of same instrument are added, the strategy cannot manage the total position or orders, but these of a single data?
( it is like the opposite problem of the original one)
-
RE: Running multiple strategies individually
It seems that only one broker is active even if multiple brokers are added, is it true?
-
RE: Running multiple strategies individually
After checking the implement in strategy.py, I am afraid it is not easy to identify specific broker when buy or sell, even if multiple brokers are added to cerebro.
-
Running multiple strategies individually
Re: Running Multiple Strategies & Combining the Output
I found that if multiple strategies are added to cerebro, they will work on the total position instead of their own positions, which makes them interact with eachother.
Is there a switch or something so that I am able to let multiple strategies just handle the order and positions from their own? I just would like to see the result of simple sum of multiple strategies.
Thanks.