1. IMPORT THE FILES INTO YOUR PROREALTIME 2. COPY THE FOLLOWING CODE IN A NEW TRADING SYSTEM 3. USE THE TIMEFRAME 1HOUR FOR TESTING THE SYSTEM a.) FOR FUTURES AND FOREX DEFPARAM CumulateOrders = False if currentyear >=2020 and currentmonth >=01 then // DEMO WORKS ONLY TO 01/2020 abschaltung = 1 endif indicator1, indicator2, indicator3, indicator4 = CALL "FUTURES AND FOREX" c1 = (indicator1 >= 1) c2 = (indicator2 <= -1) IF c1 AND abschaltung = 0 THEN BUY 1 SHARES AT MARKET GRAPHONPRICE indicator4 as "STOP" ENDIF IF c2 AND abschaltung = 0 THEN SELLSHORT 1 SHARES AT MARKET GRAPHONPRICE indicator3 as "STOP" ENDIF if longonmarket and close <=indicator4 then sell at market endif if shortonmarket and close >=indicator3 then exitshort at market endif SET TARGET %PROFIT0.5 b.) FOR STOCKS DEFPARAM CumulateOrders = False if currentyear >=2020 and currentmonth >=01 then // DEMO WORKS ONLY TO 01/2020 abschaltung = 1 endif indicator1, indicator2, indicator3, indicator4 = CALL "STOCKS" c1 = (indicator1 >= 1) c2 = (indicator2 <= -1) IF c1 AND abschaltung = 0 THEN BUY 1 SHARES AT MARKET GRAPHONPRICE indicator4 as "STOP" ENDIF IF c2 AND abschaltung = 0 THEN SELLSHORT 1 SHARES AT MARKET GRAPHONPRICE indicator3 as "STOP" ENDIF if longonmarket and close <=indicator4 then sell at market endif if shortonmarket and close >=indicator3 then exitshort at market endif SET TARGET %PROFIT0.5