// Downloaded From https://www.WiseStockTrader.com _SECTION_BEGIN("Unnamed 52"); Buy = Cross(CCI(20),EMA(CCI(20),9)); Sell = Cross(EMA(CCI(20),9),CCI(20)); // trade on next bar open SetTradeDelays( 1, 1, 1, 1 ); BuyPrice = SellPrice = Open; // trade size: 25% of current portfolio equity SetPositionSize( 25, spsPercentOfEquity ); _SECTION_END();