// Downloaded From https://www.WiseStockTrader.com //System FM 1.5 // This is an exploration only. It look for a swing in a trend with // volume activity and candle cross. // Price swing : 10Ma is under 35Ma // Trend : 50Ma is above the 100Ma // Volume : Volume is above 35 Ma // Trigger : Candel cross 5Ma TimeFrameSet(inDaily); (MA(C, 35)); (MA(C, 50)); (MA(C, 10)); (MA(C, 100)); Cross( C,MA( Close, 5 ) ); Buy = (MA(C, 35)) > (MA(C, 10)) AND (MA(C, 50)) > (MA(C, 100)) AND (V > MA( V ,35)) AND (Cross( C,MA( Close, 5 ) )) ;