Page 75 of 127

Re: Daily Open Line Chart Lines

Posted: Fri May 13, 2022 4:55 am
by Jimmy
errol wrote: Fri May 13, 2022 4:12 am Thanks so much Jimmy, that is exaclty what i was looking for. Much appreciated bro
Any time bro πŸ‘

Re: Daily Open Line Chart Lines

Posted: Sun May 15, 2022 10:00 pm
by H.Lohres
Jimmy wrote: Fri May 13, 2022 4:55 am Any time bro πŸ‘
Hi, 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

Posted: Wed May 25, 2022 2:42 am
by mrtools
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.
Looks like Tankk already added mtf to these version.

Re: Various (Specialist) indicators for MT4

Posted: Sun Jun 05, 2022 3:19 pm
by mrtools
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
Arrows added.

Re: Various (Specialist) indicators for MT4

Posted: Mon Jun 13, 2022 6:29 am
by mrtools
ε€ͺθ™šδΈ€ζ―« 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. :thumbup:


(The teacher once added RSI level to the !!Schaff Trend Cycle indicator, which worked well.)
Try.

Re: Various (Specialist) indicators for MT4

Posted: Fri Jun 17, 2022 8:11 am
by ddVito
mrtools wrote: Mon Mar 07, 2022 12:45 pmTry.

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.

Re: Various (Specialist) indicators for MT4

Posted: Fri Jun 17, 2022 9:37 am
by thiru
ddVito 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.
try this

Re: Various (Specialist) indicators for MT4

Posted: Thu Jun 23, 2022 6:45 am
by mrtools
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
Try made it so you can have a choice of all breakouts or the first.

Re: Various (Specialist) indicators for MT4

Posted: Thu Jun 23, 2022 9:07 am
by mrtools
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)

Image



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)
Looks the same as the forecast indicator posted here in the forum(except without the T3 signal line), made it into a histogram version.

PS: For the newer version which is more smoother & less noisy please see: Chande Forecast Oscillator 2023 update.

Re: Various (Specialist) indicators for MT4

Posted: Thu Jun 23, 2022 9:37 am
by PumbaPLS
mrtools 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.
Image
awesome! thank you! its a bombass indicator