[target=Price; description = Crossover of EMA 7 and EMA12; author= Bleakley, Des;] { **** CALCULATE FAST AND SLOW MOVING AVERAGES **** } fastma := ma(CLOSE, 7, EXPONENTIAL); slowma := ma(CLOSE, 12, EXPONENTIAL); { **** DISPLAY THE MOVING AVERAGE LINES **** } [name=Short MA]; fastma; [name=Long MA; ] slowma; { **** FILL THE AREA BETWEEN THE LINES TO HIGHLIGHT CROSSOVER **** } [name=Fill; linestyle=fill]; [color=green]; fastma; [color=red]; slowma;