Page 1582 of 2170

Re: MT4 Indicator requests and ideas

Posted: Wed Jun 22, 2022 4:45 pm
by mrtools
sal wrote: Wed Jun 22, 2022 4:32 pm mr. tools
what is the code change to be done for the arrows to be seen in chart even the its false signal.
i mean after current close bar the arrow should be seen on chart..
It has arrows already.

Re: MT4 Indicator requests and ideas

Posted: Wed Jun 22, 2022 4:51 pm
by sal
mrtools wrote: Wed Jun 22, 2022 4:45 pm It has arrows already.
it has arrows on current bar and , but arrows will disappear when the current bar price goes reversal to the arrow direction ...
after close bar, if the price is reversal arrow can't seen on chart.
i need to stay on the bar even its reversal price /false signal arrow.

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 1:23 am
by Jedidiah
honje19960321 wrote: Thu Jun 23, 2022 12:58 am Dear Mr Tools,
I hope more MA Method can be added.
Contains Zero lag moving average.
gratitude
Image

Image

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 3:50 am
by mrtools
honje19960321 wrote: Thu Jun 23, 2022 1:23 am

Posted a version here Dynamic zone indicators

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 5:43 am
by maxus182
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!


Re: MT4 Indicator requests and ideas

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

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 6:25 am
by Remuli
Dear kvak or mrtools, could you add to this indicator in addition to the current ones the option to change color mode: cross zero line.
(mtf + arrows + alert + divergence)

Thank You

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 6:46 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
Posted it here Various indicators

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 7:10 am
by mrtools
Remuli wrote: Thu Jun 23, 2022 6:25 am Dear kvak or mrtools, could you add to this indicator in addition to the current ones the option to change color mode: cross zero line.
(mtf + arrows + alert + divergence)

Thank You
Posted it here Ehlers indicators

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 7:20 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)
Will see if I can translate it.