Page 1908 of 2170

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 02, 2023 2:55 am
by wojtek
Looks interesting, but arrows can disappear...

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 02, 2023 4:13 pm
by RplusT
mrtools wrote: Wed Aug 02, 2023 2:27 am Sorry it's decompiled but looks like a rsi with a ma of rsi think we have some in the forum also with mtf.
Thank you, mrtools. Actually I'm a bit confused. Usually if it's a decompiled version, it says so on the header, with no references to copy rights.
This one says nothing about being decompiled and mentions all the copy right references. Thus I thought there was nothing wrong with it.

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 02, 2023 5:03 pm
by sal
mr.tools/experts
can you please add fib level in this indicator

Re: MT4 Indicator requests and ideas

Posted: Wed Aug 02, 2023 6:33 pm
by sal
mr. tools
this is mt5 indicator , can you convert to mt4

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 03, 2023 3:25 am
by mrtools
RplusT wrote: Wed Aug 02, 2023 4:13 pm Thank you, mrtools. Actually I'm a bit confused. Usually if it's a decompiled version, it says so on the header, with no references to copy rights.
This one says nothing about being decompiled and mentions all the copy right references. Thus I thought there was nothing wrong with it.
Yeah, sometimes the person who decompiled removes the header left by the decompile program for whatever reason.

Check here

Code: Select all

 G_ibuf_136[Li_40] = iRSI(NULL, 0, RsiPeriod, PRICE_CLOSE, Li_40); 
that is decompiled language guess you could call it, normally it will be something like this

Code: Select all

 rsi[i] = iRSI(NULL, 0, RsiPeriod, PRICE_CLOSE,i); 
next decompiled line

Code: Select all

G_ibuf_140[Li_40] = iMAOnArray(G_ibuf_136, 0, MaPeriod, 0, MaType, Li_40);  
regular human style

Code: Select all

 rsiMa[i] = iMAOnArray(rsi,0, MaPeriod, 0, MaType, i);  
Also Jimmy explains it very good here


Personally, don't know why it was even decompiled when the open source is available here and elsewhere.

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 03, 2023 3:42 am
by mrtools
sal wrote: Wed Aug 02, 2023 6:33 pm mr. tools
this is mt5 indicator , can you convert to mt4
Sorry, have no idea how to do this.

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 03, 2023 4:47 am
by emmany4
RplusT wrote: Tue Aug 01, 2023 11:31 pm mrtools, could you please add mtf to this Indicator and make the arrow adjustable in size. Thank you!



NRP_Indicator_(with_Push).mq4
It is already in MTF mode, in the input tab under timeframe, by default is H4 (4 hours); you can adjust by putting your desired timeframe..

Re: MT4 Indicator requests and ideas

Posted: Thu Aug 03, 2023 5:58 am
by p1ps_surfer
greetings, mr.tools/experts.

is there any indicator to add black/anycolor background with other object on it main chart window?
preferalable resizeable and changeble orientation.

Re: Relative Trend Index MT4 Indicator request

Posted: Thu Aug 03, 2023 10:32 am
by TransparentTrader
mrtools wrote: Mon Jul 31, 2023 6:37 am No, just don't know how to bypass the array.push and array.new, it's not available in mt4 or 5 but imagine there is away around that just don't know.
kvak wrote: Mon Jul 31, 2023 4:20 am It is only about my knowledge.......I have little experience with TV code.....I will definitely continue...

kvak, mrtools, is there any way to overcome the array issues in coding the Relative Trend Index for MT4? Or can it simply not be done using MQL4 code?

Re: Relative Trend Index MT4 Indicator request

Posted: Thu Aug 03, 2023 11:11 am
by mrtools
TransparentTrader wrote: Thu Aug 03, 2023 10:32 am kvak, mrtools, is there any way to overcome the array issues in coding the Relative Trend Index for MT4? Or can it simply not be done using MQL4 code?
Think it can be done, just don't know how, been looking for something similar code wise but haven't found anything.