strategia bhs individuare livelli importanti
Forums › ProRealTime forum Italiano › Supporto ProOrder › strategia bhs individuare livelli importanti
- This topic has 6 replies, 3 voices, and was last updated 2 years ago by emanuele81.
-
-
01/13/2022 at 7:20 PM #185364
salve, stavo scrivendo questa strategia che in teoria dovrebbe individuare i livelli importanti che si vengono a creare durante la giornata, non sempre fa quello che dico io anche perche io ho suddiviso la giornata in 3 time da prendere in analisi ma in realta le resistenze e supporti possono formarsi in qualsiasi momento, ho anche notato che forse il prt indica automaticamente tali livelli ma non so usarli nella strategie
test bhs1234567891011121314151617181920212223242526272829303132333435363738DEFPARAM FLATAFTER=220000BegTime=091000EndTime=215000MyContracts=1IF Time = 090000 THENmaxSetup = highest[100](high[1])endifIF not shortonmarket and Time = 120000 THENmaxSetup = highest[10](high[1])endifIF not shortonmarket and Time = 170000 THENmaxSetup = highest[10](high[1])endif//minSetup = lowest[3](low[1])//sllong = MinSetup - 36*pipsizeslshort = MaxSetup + 60*pipsize//minSetup//maxSetuptp = maxSetup - 50*pipsize// * 2 //intervallo tra Min e Max * 2//c1=adx>31if intradaybarindex=0 thentradethisday=0elseif barindex=tradeindex thentradethisday=1endifendifIf (not shortonmarket) and high >maxsetup and close<maxsetup and Time >= BegTime and Time <= EndTime and tradethisday=0 and (dayofweek=1 or dayofweek=2 or dayofweek=3 or dayofweek=4 or dayofweek=5)thensellshort mycontracts contract at maxSetup limitendifif shortonmarket thenexitshort at slshort stopendifif shortonmarket thenexitshort at tp limitendifset target profit 901 user thanked author for this post.
01/14/2022 at 10:35 AM #185431Grazie per averla condivisa.
Quello che c’è sul grafico NON può essere letto in alcun modo da indicatori, strategie e screener, per cui non ci sono alternative a trovarsi da soli resistenze, supporti, e qualunque altra figura o pattern.
01/14/2022 at 2:51 PM #185457secondo te quale potrebbe essere un modo corretto per scrivere il codice per individuare resistenze e supporti?
01/14/2022 at 5:06 PM #185475Questo è un indicatore che può aiutarti.
Puoi inserire il codice nella tua strategia:
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647DEFPARAM DrawOnLastBarOnly = TRUE//ONCE Periodi = 100ONCE HH = 0ONCE LL = 0ONCE HHres = 0ONCE HHsup = 0//HH = highest[Periodi](max(open,close))IF HH <> HH[1] THENConto = 0FOR i = 1 TO PeriodiIF (high[i] >= HH) AND max(open[i],close[i]) <= HH THENConto = Conto + 1ENDIFIF max(open[i],close[i]) > HH THENConto = 0BreakENDIFNEXTIF Conto > 1 THENHHres = HHENDIFENDIFIF HHres THENDrawSegment(Barindex,HHres,BarIndex - (Periodi - 1),HHres) coloured(0,0,255,255)ENDIF//LL = lowest[Periodi](min(open,close))IF LL <> LL[1] THENConto = 0FOR i = 1 TO PeriodiIF (low[i] <= HH) AND min(open[i],close[i]) >= LL THENConto = Conto + 1ENDIFIF min(open[i],close[i]) < LL THENConto = 0BreakENDIFNEXTIF Conto > 1 THENLLres = LLENDIFENDIFIF LLres THENDrawSegment(Barindex,LLres,BarIndex - (Periodi - 1),LLres) coloured(255,0,0,255)ENDIFRETURN1 user thanked author for this post.
01/15/2022 at 10:15 AM #185515Scuaste, come si può inserire questo indicatore in una strategia, che dovrebbe entrare long al superamento della resistenza ed entrate short allo sfondamento del supporto.
Ho provato ad inserirlo però non mi cambia assolutamente niente nella strategia
Grazie
01/15/2022 at 10:32 AM #185516Devi togliere la prima riga, l’ultima riga e le due righe dove c’è DRAWSEGMENT.
La resistenza è HHres ed il supporto LLres.
Quindi fai entrare Long quando incrocia al rialzo la resistenza e Short quando incrocia al ribasso il supporto.
01/15/2022 at 11:02 AM #185528 -
AuthorPosts
Find exclusive trading pro-tools on