Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 339 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 339 Bytes

talib-extensions

Implementing technical indicators that are not implemented in ta-lib. usage is very similar to ta-lib, for example, compute Highest high, lowest low indicator: (extracted from test)

from indicators import TalibExtension

hhllMatrix = TalibExtension.HHLL(self.high, self.low, 5);

For other examples - see tests package