Back to blog

Introducing NeuroScript

FuturaBroker's indicator language: from chart to signal in a few lines.

FuturaBroker Team·

NeuroScript is FuturaBroker's indicator language. In a few lines, you turn a strategy idea into an indicator that runs right on the chart — no build, no deploy, no friction.

Why another language

Because building indicators should be simple. Instead of a heavy SDK, NeuroScript gives you a lean syntax focused on price series and the ta.* library — 68 technical-analysis functions ready to use.

Your first indicator

A simple moving average plotted over price:

//@version=6
indicator("Moving Average", overlay=true)

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

plot(avg, "MA", color=color.blue)

input.int creates a length control, ta.sma computes the moving average and plot draws the result on the chart.

Next steps