Any time broerrol wrote: Fri May 13, 2022 4:12 am Thanks so much Jimmy, that is exaclty what i was looking for. Much appreciated bro
741
Re: Daily Open Line Chart Lines
742Hi, chief, please can you look at this indicator and see if some of these properties can be edited into it,
(it probably would be one of the best fractal indicators once)
1... adjustable/extendable Lines (using Trendlines) from the fractal points instead of the arrows
2. option to choose how many fractal lines can appear in the past ..eg ... show only the last n ( n =3 or n=4) past fractal lines
(trendlines from the candle tip extended to screen end far right)
3.. only updates fractal lines after candle close... (no fractal line on the candle before the current candle or on the current candle, as a fractal point, is only confirmed after candle close)
4... fractal lines update as the market price moves forward, (deleting previous ones) while keeping the last 3 or 4 fractal updated lines constant on the chart
posted picture below ....thanks chief
Re: Various (Specialist) indicators for MT4
743Looks like Tankk already added mtf to these version.thomdel wrote: Tue May 24, 2022 3:22 pm @ mrtools
Respected Sir,
If you like this idea, Request you to Please Add mtf to : ATR HiLo Channel Arrows TT button
Thanks for your Time, Generosity, Support.
Thanks.
Re: Various (Specialist) indicators for MT4
744Arrows added.Shannon1948 wrote: Sun Jun 05, 2022 1:37 pm Dear Mr Tools, would it be possible for you to add arrows to this indicator.
Kind Regards
S
- These users thanked the author mrtools for the post (total 6):
- 太虚一毫, Jedidiah, camisa, Shannon1948, Krunal Gajjar, Akela
Re: Various (Specialist) indicators for MT4
745Try.太虚一毫 wrote: Sun Jun 12, 2022 12:31 pm I believe it is very interesting to add the RSI filter to the bulls vs bears histogram.![]()
(The teacher once added RSI level to the !!Schaff Trend Cycle indicator, which worked well.)
- These users thanked the author mrtools for the post (total 4):
- 太虚一毫, josi, RodrigoRT7, Jedidiah
Re: Various (Specialist) indicators for MT4
746Hi MrTools,
Just to inform you that "!!! Horizontal Lines (alerts).mq4" indi at viewtopic.php?t=8472209&start=700 doesn't clear alert lines from the chart after removing/deleting it from the chart at my end.
Re: Various (Specialist) indicators for MT4
747try thisddVito wrote: Fri Jun 17, 2022 8:11 am Hi MrTools,
Just to inform you that "!!! Horizontal Lines (alerts).mq4" indi at viewtopic.php?t=8472209&start=700 doesn't clear alert lines from the chart after removing/deleting it from the chart at my end.
- These users thanked the author thiru for the post (total 2):
- Tradehunter, ddVito
Re: Various (Specialist) indicators for MT4
748Try made it so you can have a choice of all breakouts or the first.maxus182 wrote: Thu Jun 23, 2022 5:43 am Hi, is it possible to add alerts and vertical lines to the Range Oscillator? Vertical lines when crossing the overbought/oversold level for the first time.
Thank you very much for all the great work!
hlr osc.mq4
Re: Various (Specialist) indicators for MT4
749Looks the same as the forecast indicator posted here in the forum(except without the T3 signal line), made it into a histogram version.PumbaPLS wrote: Thu Jun 23, 2022 6:07 am Forecast Oscillator
The Forecast Oscillator is a technical indicator that compares a security close price to its time series forecast. The time series forecast function name is "tsf" and it calculates the projection of the price trend for the next bar.
The Forecast Oscillator and therefore the time series forecast are based on linear regression . The time series forecast indicator is equal to the sum of two other indicators: the linear regression (LinearReg) and the linear regression slope (LinearReg_Slope).
Code: Select all
study("Forecast Oscillator", overlay=false) src = input(close) len = input(defval=14, minval=1, title="Length") lrc = linreg(src, len, 0) lrc1 = linreg(src,len,1) lrs = (lrc-lrc1) TSF = linreg(src, len, 0)+lrs fosc=100*(src-TSF[1])/src col12 = fosc > fosc[1] col32 = fosc < fosc[1] color2 = col12 ? #21C400 : col32 ? #960012 : color.blue plot(fosc, color = color2,linewidth=2, title = "TSF") hline(0, linestyle=2, color=color.blue)
PS: I know we also have a forecast Oscillator on this website, but its different (as far I can tell, also not a histo version)
PS: For the newer version which is more smoother & less noisy please see: Chande Forecast Oscillator 2023 update.
- These users thanked the author mrtools for the post (total 14):
- kvak, PumbaPLS, 太虚一毫, Jedidiah, Chickenspicy, thomdel, josi, Milad8732, BeatlemaniaSA, maxus182, Jimmy, heispark, excellence, Krunal Gajjar
Re: Various (Specialist) indicators for MT4
750awesome! thank you! its a bombass indicatormrtools wrote: Thu Jun 23, 2022 9:07 am Looks the same as the forecast indicator posted here in the forum(except without the T3 signal line), made it into a histogram version.
- These users thanked the author PumbaPLS for the post (total 3):
- Chickenspicy, BeatlemaniaSA, Jedidiah
You cannot solve a problem from the same consciousness that created it. You must learn to see the world anew