Ecco un esempio di come costruire un segnale basato sul SuperTrend

Buy script

INPUTS: @periods(9), @strenght(5) 
SET A = SuperTrend(@periods, @strenght) 
CROSSOVER(CLOSE, A)
Sell script

INPUTS: @periods(9), @strenght(5) 
SET A = SuperTrend(@periods, @strenght) 
CROSSOVER(A, CLOSE)