Forums › ProRealTime English forum › ProOrder support › Machine Learning in ProOrder ProRealTime › Reply To: Machine Learning in ProOrder ProRealTime
04/24/2020 at 2:27 PM
#127816
Yes, Fifi’s itf worked for me too … but then, so does this one on DJ 15m with 8 years TBT, no error message. Only on Daily I get the tbt warning
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
IF high > renkoMax + boxSize THEN WHILE high > renkoMax + boxSize renkoMax = renkoMax + boxSize renkoMin = renkoMin + boxSize WEND ELSIF low < renkoMin - boxSize THEN WHILE low < renkoMin - boxSize renkoMax = renkoMax - boxSize renkoMin = renkoMin - boxSize WEND ENDIF c1 = renkoMax + boxSize c2 = renkoMin - boxSize // Conditions to enter long positions If c1 then Buy N CONTRACT at renkoMax + boxSize stop EndIf // Conditions to enter short positions If c2 then Sellshort N CONTRACT at renkoMin - boxSize stop EndIf |