Page 1845 of 2170

Re: Blacklist him!

Posted: Sat Apr 29, 2023 7:30 pm
by moey_dw
Panzon wrote: Sat Apr 29, 2023 7:27 pm No, Sorry I am new...it was posted below my post..... so I got confused...... Sorry
Its okay man welcome to the club....... things can get a bit wild in here

Re: Blacklist him!

Posted: Sat Apr 29, 2023 9:37 pm
by tkhanfx
moey_dw wrote: Sat Apr 29, 2023 7:13 pm That sounds suspiciously like a big fat "NO" from him so I say we blacklist this guy from any further help in future....
Image
What are you on about mate? Calm down or you might piss your panties.. I have kept my request simple, respectful and well within community guidelines and passed on what i think would be useful here in the community in return. Learning and sharing is what we do here and am well aware of that

so let the moderators do their job and you can carry on being the comic relief with your hilarious meme's

Re: Blacklist him!

Posted: Sat Apr 29, 2023 9:41 pm
by BeatlemaniaSA
moey_dw wrote: Sat Apr 29, 2023 7:30 pm Its okay man welcome to the club....... things can get a bit wild in here
Haha, good 'ol moey_dw scaring up the newbies... :Rofl: :Rofl: :Rofl:

Re: MT4 Indicator requests and ideas

Posted: Sat Apr 29, 2023 10:24 pm
by mosape
does anyone have a good multi time frame (MTF) support and resistance indicator that can be able to share ?
@mr tools

Re: MT4 Indicator requests and ideas

Posted: Sat Apr 29, 2023 10:40 pm
by Woodyz
mosape wrote: Sat Apr 29, 2023 10:24 pm does anyone have a good multi time frame (MTF) support and resistance indicator that can be able to share ?
@mr tools
Heres 1 to try

Re: MT4 Indicator requests and ideas

Posted: Sun Apr 30, 2023 2:24 am
by mirfai
Hai, may i request this indicator on this tiktok videos or does anyone already has this indicator?

https://vt.tiktok.com/ZS8T5Swsb/

Re: MT4 Indicator requests and ideas

Posted: Sun Apr 30, 2023 6:15 am
by TransparentTrader
Gethsemane wrote: Sat Apr 29, 2023 4:32 pm Found an interesting indicator on Tradingview, if it can be converted.
It plots HH/LL/LH/HL as histogram, pretty neat.

https://se.tradingview.com/script/KMVvr ... owest-Low/
Image

Code: Select all

//@version=2
study("HH&LL") // highest high & lowest low
length=input(20)
ww=input(false,title="use adaptive OS/OB ?")
qq=input(true,title="use backround signal color?")
his=input(true,title="Show Histogram?")
useCurrentRes = input(true, title="Use Current Chart Resolution?")
resCustom = input(title="Use Different Timeframe? (Uncheck Box Above).", type=resolution, defval="D")
res = useCurrentRes ? period : resCustom
HHH =iff( high > high[1], (high - lowest( high, length )) /( highest( high, length ) - lowest( high, length ) ), 0 ) 
LLL = iff( low < low[1],( highest( low, length ) - low ) /( highest( low, length ) - lowest( low, length ) ), 0 ) 
HHSa = ema( HHH, length ) * 100 
LLSa = ema( LLL, length ) * 100 
HHS = security(tickerid, res,HHSa)
LLS= security(tickerid, res, LLSa)
aa=plot( HHS, "HHS" ,color=blue,transp=0) 
bb=plot( LLS, "LLS" ,color=red,transp=0) 	
hln=input(60)
lln=input(10)
smo=input(50,"Bands Filter length")
hs=highest(max(HHS,LLS),50)
lw=lowest(min(LLS,HHS),50)
mh=ema(hs,20)
RMSa= sum( mh*mh, smo)
RMS= avg(sqrt(RMSa/smo),hln)
al=ww?RMS:hln
ms=ema(lw,20)
MSa= sum( ms*ms, smo)
MS= avg(sqrt(MSa/smo),lln)
bs=ww?MS:lln
col=HHS>al and HHS[2]<HHS[1] and HHS[1]>HHS and LLS<bs?1:0
cor=LLS>al and LLS[2]<LLS[1] and LLS[1]>LLS and HHS<bs?1:0
con=HHS<bs and HHS[2]>HHS[1] and HHS[1]<HHS and LLS>al?1:0
cod=LLS<bs and LLS[2]>LLS[1] and LLS[1]<LLS and HHS>al?1:0
bc=col or cod?red: cor or con?green:na
a=plot(al,style=cross,color=black,transp=50)
b=plot(bs,style=cross,color=black,transp=50)
df=abs(HHS-LLS)
cl=df>55?red : df<25?green :orange
plot(his?df:na,color=cl,style=histogram,linewidth=2,transp=75)
plot(HHS>al?HHS:na,style=histogram,histbase=60,color=red)
plot(LLS>al?LLS:na,style=histogram,histbase=60,color=red)
plot(LLS<bs?LLS:na,style=histogram,histbase=10,color=green)
plot(HHS<bs?HHS:na,style=histogram,histbase=10,color=green)
bgcolor(qq?bc:na,transp=80)

Adding in my +1 here. At 46 lines of what looks like straightforward code, it would be really cool if one of the resident coders on Forex-Station could port this indicator into MT4 format.

Re: MT4 Indicator requests and ideas

Posted: Sun Apr 30, 2023 11:31 am
by TE81950
Hello, there I would like to kindly ask if anyone can add multiple time frame Background zone to these two indicators I would greatly appreciate it (((means a lot thank you))

Re: MT4 Indicator requests and ideas

Posted: Sun Apr 30, 2023 11:48 am
by TE81950
here is a great EA that we built a lot of features into it to make it profitable it has two order entry positions per signal and independent trailing stop loss and take profit levels with inverse strategy option along with each lot size and size multiplier with good day and time filter try it out it's very profitable with the right time and date filter.


The EA is based on HOTT_LOTT_005 (alerts) 1.12 indicator in order to use the EA you have to add it to your folder

Re: MT4 Indicator requests and ideas

Posted: Sun Apr 30, 2023 12:48 pm
by DTRCT
mosape wrote: Sat Apr 29, 2023 10:24 pm does anyone have a good multi time frame (MTF) support and resistance indicator that can be able to share ?
@mr tools
I do prefer this one: