mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-08-09 12:20:21 +08:00
Merge branch 'pr/108' into development
This commit is contained in:
+4
-1
@@ -567,7 +567,10 @@ class AnalysisIndicators(BasePandasObject):
|
||||
timed = kwargs.pop("timed", False)
|
||||
if mode["custom"]:
|
||||
if timed: stime = perf_counter()
|
||||
[getattr(self, kwds["kind"])(**kwds) for kwds in ta]
|
||||
if "params" in kwds and kwds["params"] and isinstance(kwds["params"], tuple):
|
||||
[getattr(self, kwds["kind"])(*kwds["params"], **kwds) for kwds in ta]
|
||||
else:
|
||||
[getattr(self, kwds["kind"])(**kwds) for kwds in ta]
|
||||
else:
|
||||
# Run ALL or Categorical with multiprocessing
|
||||
if verbose:
|
||||
|
||||
Reference in New Issue
Block a user