// Downloaded From https://www.WiseStockTrader.com //Author: Teddax RSI_periode = 14; RSI_limite = 30; RSI_Sell_limite = 70; Delta_RSI_limite = -30; //parameters for Sell MargeStoploss = 5; RSI_derive=RSI(RSI_periode)-Ref(RSI(RSI_periode),-1); condition_non_trending=ADX(14)<20; Buy =RSI(RSI_periode)Delta_RSI_limite AND Ref(RSI_derive,-1)>Delta_RSI_limite AND condition_non_trending; //stop loss/profit Sell = RSI(14)>RSI_Sell_limite; ApplyStop(stopTypeLoss, stopModePercent, Optimize( "max. loss stop level", 3, 0.1, 2, 0.1 ), True ); Filter = 1; AddColumn( RSI(RSI_periode)