Page 1583 of 2042

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.

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 9:09 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)
Posted a version here Various indicators

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 3:58 pm
by thomdel
@ mrtools,


Reason for request :
To make this Indi more useful / output in simple form.
Trend Dots as histo will help us to see the output in simple form.


Respected Sir,

If you like this idea/suggestion & useful for all users, request you to kindly add this features in : MACD_Momentum_&_Trend_Index_1.031

1) Show Dots Output as Histo form also : User selectable drop down menu :
Histo as Dots ( Original Indi style ) & Histo as found in Waddah attar & normal histo bars in a straight line
( attachment pic for ref ) *

2) Arrows, Alerts if possible


Thanks for your Efforts, Times, support, kindness.
Thanks.

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 4:14 pm
by Devvasu525
Vwap with different price option is available?
Can someone help me on this please. Searched everywhere but didn't find it.
Thankyou, it will be great if i get it

Re: MT4 Indicator requests and ideas

Posted: Thu Jun 23, 2022 4:42 pm
by Ogee
Devvasu525 wrote: Thu Jun 23, 2022 4:14 pm Vwap with different price option is available?
Can someone help me on this please. Searched everywhere but didn't find it.
Thankyou, it will be great if i get it
All price options here, you can turn the bands off by making the input 0.

Re: MT4 Indicator requests and ideas

Posted: Fri Jun 24, 2022 1:24 am
by Phoenix
Good day all could someone add an alert to this indicator when the filter line crosses the zero line please and thank you.

Re: MT4 Indicator requests and ideas

Posted: Fri Jun 24, 2022 1:25 am
by sal
mr.tools
can you please add addtional arrows based on the levels
rules for UParrow
when magenta line <= 15 level
&& blue line crosses up >=30 level
&& green line <30 level

if possible to add levels in custom setting will be great to custom levels

Re: MT4 Indicator requests and ideas

Posted: Fri Jun 24, 2022 4:02 am
by Jedidiah
mrtools wrote: Thu Jun 23, 2022 3:50 am Posted a version here Dynamic zone indicators
Dear Mr Tools,


The Alligator Window indicator wants Added all the averages too


gratitude

Re: MT4 Indicator requests and ideas

Posted: Fri Jun 24, 2022 5:02 am
by mrtools
thomdel wrote: Thu Jun 23, 2022 3:58 pm @ mrtools,


Reason for request :
To make this Indi more useful / output in simple form.
Trend Dots as histo will help us to see the output in simple form.


Respected Sir,

If you like this idea/suggestion & useful for all users, request you to kindly add this features in : MACD_Momentum_&_Trend_Index_1.031

1) Show Dots Output as Histo form also : User selectable drop down menu :
Histo as Dots ( Original Indi style ) & Histo as found in Waddah attar & normal histo bars in a straight line
( attachment pic for ref ) *

2) Arrows, Alerts if possible


Thanks for your Efforts, Times, support, kindness.
Thanks.
Image
With that indicator not sure how to do that, sorry.

Re: MT4 Indicator requests and ideas

Posted: Fri Jun 24, 2022 5:06 am
by mrtools
sal wrote: Fri Jun 24, 2022 1:25 am mr.tools
can you please add addtional arrows based on the levels
rules for UParrow
when magenta line <= 15 level
&& blue line crosses up >=30 level
&& green line <30 level

if possible to add levels in custom setting will be great to custom levels
Image
More than likely you will get very few arrows that way, also that adx from my understanding is the same as the built in adx which is not a correct adx.