Bollinger %B su HA
Forums › ProRealTime forum Italiano › Supporto ProBuilder › Bollinger %B su HA
- This topic has 6 replies, 3 voices, and was last updated 5 years ago by Hendrix.
Tagged: BB, Bollinger, HA, heikin ashi
Viewing 7 posts - 1 through 7 (of 7 total)
-
-
05/21/2019 at 11:21 AM #98984
Buongiorno,
è possibile avere un indicatore che disegni le candele HA in verde se il valore dell’indicatore Bollinger % B con valori valori 20.2 è maggiore di 50 e in rosso se il valore è minore di 50 e sempre in viola se l’indicatore è maggiore di 100 e -100.
Grazie
Saluti
05/21/2019 at 5:50 PM #99062Eccolo:
1234567891011121314151617181920212223242526272829303132333435363738394041424344//DEFPARAM CalculateOnLastBars = 1000// definizione delle candele HAif barindex > 1 thenxClose = (open+close+low+high)/4 //TotalPricexOpen = (xOpen[1]+xClose[1])/2haHigh = Max(xOpen, xClose)haLow = Min(xOpen, xClose)xHigh = Max(High,haHigh)xLow = Min(Low,haLow)//xRange = abs(xClose - xOpen)elsexClose = (open+close+low+high)/4 //TotalPricexOpen = (Open[1]+Close[1])/2haHigh = Max(xOpen, xClose)haLow = Min(xOpen, xClose)xHigh = Max(High,haHigh)xLow = Min(Low,haLow)//xRange = abs(xClose - xOpen)endif// Bollinger BB%p = 20dev = 2.0BollInf = Average[p,0](xclose) - (dev * std[p](xclose))BollSup = Average[p,0](xclose) + (dev * std[p](xclose))pB = ((xclose - BollInf) / (BollSup - BollInf)) * 100//// colore VIOLA per difettor = 186g = 85b = 211// Visibilità massimaa = 255//IF pB <= 100 AND pB > 50 THENr = 0g = 128 //Verdeb = 0ELSIF pB >= -100 AND pB <= 50 THENr = 255 //Rossog = 0b = 0ENDIFDRAWCANDLE(xOpen,xHigh,xLow,xClose) coloured(r,g,b,a)return07/16/2019 at 8:06 AM #10263907/16/2019 at 8:08 AM #10264107/16/2019 at 8:18 AM #10264407/16/2019 at 8:24 AM #102645Se vuoi usare l’indicatore per le normali candele togli le linee 1-19, poi togli le “x” dai riferimenti a CLOSE, OPEN, HIGH, LOW.
07/16/2019 at 8:30 AM #102646 -
AuthorPosts
Viewing 7 posts - 1 through 7 (of 7 total)
Find exclusive trading pro-tools on
Similar topics: