A pedidos segue alguns Scripts populares nos Estados Unidos, use e abuse na plataforma United Charts para disparar alertas e ordens automaticamente:

Bollinger Bands
Compra se a última barra tocar a banda inferior e a barra anterior estava dentro da banda, ou ainda se a máxima do último candle exceder em 2% a banda superior.
# Buy if a previous value was below the low band and is now above
SET Bottom = BBB(CLOSE, 20, 2, EXPONENTIAL)
SET Top = BBT(CLOSE, 20, 2, EXPONENTIAL)
REF(CLOSE, 1) < REF(Bottom, 1) AND
CLOSE > Bottom OR
# Also buy if the close is above the top band plus 2%
CLOSE > Top * 1.02

Indice de Força Relativa
Dispara quando o IFR for maior que 70 e o volume é alto
RSI(CLOSE, 14) > 70 AND VOLUME > REF(VOLUME,1) * 2 AND VOLUME > 100000

Último preço 1% superior ao fechamento anterior com alto volume
LAST > REF(CLOSE, 10) AND VOLUME > SMA(VOLUME, 10) * 5 AND LAST > REF(CLOSE, 1) * 1.01

Rainbow Oscillator
Rainbow atinge a região positiva a qualquer momento
SET R = RBO(CLOSE, 3, SIMPLE)
R > 0.5 AND REF(R, 1) < 0.5

Bullish Key Reversal
OPEN < REF(CLOSE, 1) AND LAST > REF(HIGH, 1) AND LOW < REF(LOW, 20) AND LAST > REF(CLOSE, 10) AND CLOSE > REF(CLOSE, 30)

Bullish Morning Star Candles
CANDLESTICKPATTERN() = MORNING_STAR

MACD Crossovers
CROSSOVER(MACD(13, 26, 9, EXPONENTIAL), SMA(MACD(13, 26, 9, EXPONENTIAL), 13)) AND SMA(CLOSE, 30) > REF(SMA(CLOSE, 30), 30) * 1.2

GAPS
último 2% acima da máxima anterior com volume, geralmente atribuído a boas notícias.
LOW > REF(HIGH, 1) * 1.02 AND VOLUME > 100000