RREM Alligator Indicators - Bill Williams, "Trading Chaos"
// Chaos Blue BL
// Alligator Blue Balance Line - Jaw
// 13 bar smoothed average offset 8 bars
ChaosBlueBL=WilderAverage[13](close[8])
// Chaos Red BL
// Alligator Red Balance Line - Teeth
// 8 bar smoothed average offset 5 bars;
ChaosRedBL=WilderAverage[8](close[5])
// Chaos Green BL
// Alligator Green Balance Line - Lip
// 5 bar smoothed average offset 3 bars
ChaosGreenBL=WilderAverage[5](close[3])
RETURN ChaosBlueBL COLOURED(0,0,255) AS"Jaw", ChaosRedBL COLOURED(255,0,0) AS"Teeth", ChaosGreenBL COLOURED(0,255,0) AS"Lips"