Heikin Ashi + Parabolic SAR Gael
Forums › ProRealTime forum Italiano › Supporto ProOrder › Heikin Ashi + Parabolic SAR Gael
- This topic has 9 replies, 3 voices, and was last updated 3 years ago by Gael.
-
-
01/03/2021 at 3:56 PM #156101
Salve a tutti,
vi scrivo per chiedervi se sareste in grado di creare un trading System che ho in mente, ma per mia sfortuna non ho le capacità per metterlo in pratica visto che non conosco il linguaggio di programmazione.
Ho messo in allegato il progetto.
Grazie mille per la vostra attenzione.
01/04/2021 at 12:31 PM #156207Eccolo:
123456789101112131415161718192021222324252627282930313233343536373839404142434445DEFPARAM CumulateOrders = FALSEonce xOpen = openxClose = (open + close + high + low) / 4if barindex > 0 thenxOpen = (xOpen + xClose[1]) / 2endifxLow = min(low,min(xClose,xOpen))xHigh = max(high,max(xClose,xOpen))xUpperWick = xHigh - max(xOpen,xClose)xLowerWick = min(xClose,xOpen) - xLowUpperShaved= (xUpperWick = 0)LowerShaved= (xLowerWick = 0)MySAR = SAR[0.02,0.02,0.2]CrossOver = xClose CROSSES OVER MySARCrossUnder = xClose CROSSES UNDER MySAR// condizioni LONGLcond = LowerShaved AND CrossOver AND Not OnMarket// condizioni SHORTScond = UpperShaved AND CrossUnder AND Not OnMarket//IF LongOnMarket THENMyDiff = abs(min(xOpen,xClose) - MySAR) / 2 //trailing stop LONGMyStop = max(MySAR + MyDiff,MyStop)SELL AT MyStop STOPELSIF ShortOnMarket THENMyDiff = abs(max(xOpen,xClose) - MySAR) / 2 //trailing stop SHORTMyStop = min(MySAR - MyDiff,MyStop)EXITSHORT AT MyStop STOPENDIF// entrata LONGIF Lcond THENBUY 1 Contract at MarketMyDiff = abs(min(xOpen,xClose) - MySAR) / 2SET TARGET PROFIT MyDiff * 7MyStop = MySAR + MyDiffSELL AT MyStop STOPENDIF// entrata SHORTIF Scond THENSELLSHORT 1 Contract at MarketMyDiff = abs(max(xOpen,xClose) - MySAR) / 2SET TARGET PROFIT MyDiff * 7MyStop = MySAR - MyDiffEXITSHORT AT MyStop STOPENDIF01/04/2021 at 6:48 PM #15632701/06/2021 at 8:24 PM #15666501/06/2021 at 9:55 PM #156672Non c’è un TF specifico, utilizza quello che è sul grafico.
01/10/2021 at 10:25 PM #15724102/28/2021 at 8:03 PM #16279303/01/2021 at 10:32 AM #162816Te lo allegherà sicuramente Roberto.
In ogni caso puoi provare a fare da solo in questo modo: nell’immagine con la formula sopra riportata, in alto a destra vedi due piccole icone. Se premi in quella più a sinistra ti si seleziona il testo della strategia. Copi il testo, vai in: indicatori –> backtesting –> nuovo –> la incolli e gli dai il nome che vuoi. Poi basta che selezioni la strategia rinominata e vai in “esporta” per avere il file .itf
1 user thanked author for this post.
03/01/2021 at 10:48 AM #162821Nel caso tu non sia riuscito a fare come suggerito da MauroPro, lo allego qui.
03/01/2021 at 3:52 PM #162878 -
AuthorPosts
Find exclusive trading pro-tools on