MachinaTrader seamlessly integrates the renowned TALibs indicators, providing you with a powerful toolkit for informed trading decisions. While we support all TALibs indicators, our platform goes beyond limitations by enabling you to build and incorporate custom indicators effortlessly through our script editor or scripting visual node. With MachinaTrader, you have the freedom to explore and create your unique trading strategies, backed by the robustness of TALibs and the flexibility of our intuitive tools
Python Ta-Libs Example
Python Ta-Libs Example
class Calcs: def __init__(self, candles): self.smaFast = talib.SMA(candles.C, self.sma_fast) self.smaSlow = talib.SMA(candles.C, self.sma_slow) self.crossOver = talib.CROSSOVER(self.smaFast, self.smaSlow) self.crossUnder = talib.CROSSUNDER(self.smaFast, self.smaSlow) def hasCrossedOver(self): return self.crossOver[-1] > 0 def hasCrossedUnder(self): return self.crossUnder[-1] > 0