SCREENER Morning Star HEIKIN ASHI
Forums › ProRealTime forum Italiano › Supporto ProScreener › SCREENER Morning Star HEIKIN ASHI
- This topic has 12 replies, 2 voices, and was last updated 4 years ago by robertogozzi.
Tagged: ashi, HA, heikin, Morning Star
-
-
01/26/2020 at 12:18 PM #11787201/26/2020 at 12:20 PM #11787301/26/2020 at 1:00 PM #117878
Questa è la definizione delle candele HA:
123456789// HA – definizione Heikin-Ashi//once 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))Partendo da questa si possono definire i pattern desiderati.
Quello che vuoi tu è questo http://www.traderpedia.it/wiki/index.php/Morning_Star?
01/26/2020 at 2:13 PM #11788301/26/2020 at 2:16 PM #11788401/26/2020 at 2:53 PM #117890Eccolo (non l’ho verificato):
1234567891011121314151617181920// HA - definizione Heikin-Ashi//once 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))xRange = xHigh - xLowBullish = xClose > xOpenBearish = xClose < xOpenxBody = abs(xClose - xOpen)ShortCandle = xBody <= (xRange * 0.6)LongCandle = xBody >= (xRange * 0.6)Candle3 = Bullish and (xRange < xRange[2]) and (xBody > xBody[1])Candle2 = Shortcandle[1] and (xBody[1] <= (xRange[1] * 0.5)) and (xLow[1] = lowest[3](xLow))Candle1 = Bearish[2]MorningStar = Candle1 and Candle2 and Candle3//and (summation[3](volume > volume[1]) = 3)Screener[MorningStar]Varia tu le percentuali per definire le caratteristiche delle varie candele.
Alla penultima riga ho commentato la parte che richiede che ci siano gli ultimi tre volumi crescenti. Se t’interessano basta che togli le due barre.
01/26/2020 at 3:00 PM #117893Ho variato il titolo.
Usa un titolo meno generico, che aiuti i lettori a capire immediatamente di cosa si tratta.
Grazie 🙂
01/27/2020 at 7:42 AM #11797501/27/2020 at 8:39 AM #117979Metti le doppie barre iniziali “//“ alla riga 15.
01/27/2020 at 9:03 AM #11798401/27/2020 at 10:25 AM #117994Se hai i dati di fine giornata può essere, perché il Giornaliero è indietro di un giorno, mentre il settimanale di una settimana.
Se non è questo il tuo caso… non saprei dirti, non ho notato differenze e non dovrebbero essercene in quanto la logica non cambia, è lo stesso pattern indipendentemente dal TF.
01/27/2020 at 11:10 AM #11800201/27/2020 at 11:36 AM #118008 -
AuthorPosts
Find exclusive trading pro-tools on