Forums › ProRealTime English forum › ProBuilder support › New indicator regarding collor from lines › Reply To: New indicator regarding collor from lines
12/01/2017 at 3:45 PM
#54485
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// Definition of code parameters DEFPARAM CumulateOrders = False // Cumulating positions deactivated // Conditions to enter long positions indicator1 = DEMA[21](close) indicator2 = DEMA[21](close) c1 = (indicator1 > indicator2[1]) indicator3, ignored = CALL "True Strength Index" c2 = (indicator3 > indicator3[1]) indicator4, ignored, ignored = CALL "PRC_Bressert Scalper Improved" c3 = (indicator4 > indicator4[1]) IF c1 AND c2 AND c3 THEN BUY 1 CONTRACT AT MARKET ENDIF |
I think many people here asking for complete codes to do x y z would be better served watching some PRT tutorials on how to do this . I used the trade system creator to do this and it took all of 2 minutes after i found and installed the indicators . Its is a very easy process