Developer platform · FuturaBroker

Build indicators.
In code or with AI.

Write in NeuroScript (ta.*) or generate from natural language with NeuroChart AI — and see the result live on the chart.

NeuroScript is FuturaBroker's indicator language. Write your strategy in a few lines and see the result right on the chart.

Real technical analysis

68 ta.* functions — moving averages, oscillators, bands and crossovers. Everything to build serious indicators right on Futura's chart.

Write in NeuroScript.

Simple to start, powerful to go far. In a few lines, your strategy becomes an indicator on the chart.

moving-average.ns
//@version=6
indicator("Moving Average", overlay=true)

length = input.int(20, "Length")
media  = ta.sma(close, length)

plot(media, "MA", color=color.orange)

Try it

indicator("Moving Average", overlay=true)
NeuroScript editor

futurabroker.com

Indicador no gráfico!

indicator("Média Móvel", overlay=true)length = input.int(20, "Período")media = ta.sma(close, length)plot(media, "MM", color=color.orange)