Thank you for the clarification and link, will look into it.
Latest posts made by aaggmm
-
RE: Machine Learning Integration
-
Machine Learning Integration
Has anyone successfully integrated machine learning packages e.g. btgym (https://community.backtrader.com/topic/509/implementation-of-openai-gym-environment-for-backtrader) into strategy development?
-
RE: Get position of an instrument within a strategy
Thanks for reply. Is there a way to assign one broker to each strategy then? Because without ability to correctly evaluate position within each strategy, multi-strategy cannot be truly implemented.
-
Get position of an instrument within a strategy
How to get current position of an instrument within a strategy? It appears that "strategy.getposition(data)" returns the position of the instrument across all strategies.
-
RE: Extend a pandas datafeed
.... the purpose of this need is to build indicator on user data. Any advice? Thanks !
-
Extend a pandas datafeed
Is it possible add user data (other than open/high/low/close/volume/openinterest) from pandas dataframe to build bt datafeed? Thanks!
-
Compute indicator in _next_ process ?
Is it possible to compute indicator in Next section? If not, is there any way to calculate adaptive indicators which parameters (or sometimes data) need to be dynamically determined in the next process? Thanks!
-
How to get max close price for the past n days
How to get the maximum close price for the past n days? I tried to use Max indicator but it is not supported?
clsmax = bt.ind.Max(data.close, period=self.p.nmax)
TypeError: init() got an unexpected keyword argument 'period'