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 // BY JÜRGEN STRASSER - EMAIL: INFO@FUTURES-TRADING.INFO DEFPARAM CumulateOrders = False once ordersize = 1 if PositionPerf(1) >0THEN OrderSize = 1 ENDIF IF PositionPerf(0) <0 THEN OrderSize = PositionPerf(0)*-1*400 ENDIF if currentyear >=2020 and currentmonth >=01 then // DEMO WORKS ONLY TO 01/2020 abschaltung = 1 endif indicator1, indicator2, indicator3, indicator4, indicator5, indicator6, indicator7, indicator8 = CALL "FUTURES AND FOREX" c1 = (indicator1 >= 1) c2 = (indicator2 <= -1) c3 = (indicator5 >= 1) c4 = (indicator6 <= -1) IF c1 AND abschaltung = 0 THEN exitshort at market BUY ORDERSIZE SHARES AT MARKET GRAPHONPRICE indicator4 as "MAIN STOP" GRAPHONPRICE indicator8 as "FIRST STOP" ENDIF IF c2 AND abschaltung = 0 THEN sell at market SELLSHORT ORDERSIZE SHARES AT MARKET GRAPHONPRICE indicator3 as "MAIN STOP" GRAPHONPRICE indicator7 as "FIRST STOP" ENDIF IF c1 AND c3 and abschaltung = 0 THEN //BUY ORDERSIZE SHARES AT MARKET GRAPHONPRICE indicator8 as "FIRST STOP" ENDIF IF c2 AND c4 and abschaltung = 0 THEN //SELLSHORT ORDERSIZE SHARES AT MARKET GRAPHONPRICE indicator7 as "FIRST 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 // BY JÜRGEN STRASSER - EMAIL: INFO@FUTURES-TRADING.INFO DEFPARAM CumulateOrders = False once ordersize = 1 if PositionPerf(1) >0THEN OrderSize = 1 ENDIF IF PositionPerf(0) <0 THEN OrderSize = PositionPerf(0)*-1*400 ENDIF if currentyear >=2020 and currentmonth >=01 then // DEMO WORKS ONLY TO 01/2020 abschaltung = 1 endif indicator1, indicator2, indicator3, indicator4, indicator5, indicator6, indicator7, indicator8 = CALL "STOCKS" c1 = (indicator1 >= 1) c2 = (indicator2 <= -1) c3 = (indicator5 >= 1) c4 = (indicator6 <= -1) IF c1 AND abschaltung = 0 THEN BUY OrderSize SHARES AT MARKET GRAPHONPRICE indicator4 as "MAIN STOP" GRAPHONPRICE indicator8 as "FIRST STOP" ENDIF IF c2 AND abschaltung = 0 THEN SELLSHORT OrderSize SHARES AT MARKET GRAPHONPRICE indicator3 as "MAIN STOP" GRAPHONPRICE indicator7 as "FIRST STOP" ENDIF IF c1 AND c3 and abschaltung = 0 THEN //BUY OrderSize SHARES AT MARKET GRAPHONPRICE indicator8 as "FIRST STOP" ENDIF IF c2 AND c4 and abschaltung = 0 THEN //SELLSHORT OrderSize SHARES AT MARKET GRAPHONPRICE indicator7 as "FIRST STOP" ENDIF if longonmarket and close <=indicator4 then sell at market endif if shortonmarket and close >=indicator3 then exitshort at market endif //if longonmarket and close <=indicator8 then //sell at market //endif //if shortonmarket and close >=indicator7 then //exitshort at market //endif SET TARGET %PROFIT0.5