Re: MT4 Indicator requests and ideas
Posted: Wed Aug 02, 2023 2:55 am
Looks interesting, but arrows can disappear...
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.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.
Yeah, sometimes the person who decompiled removes the header left by the decompile program for whatever reason.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.
Code: Select all
G_ibuf_136[Li_40] = iRSI(NULL, 0, RsiPeriod, PRICE_CLOSE, Li_40);
Code: Select all
rsi[i] = iRSI(NULL, 0, RsiPeriod, PRICE_CLOSE,i);
Code: Select all
G_ibuf_140[Li_40] = iMAOnArray(G_ibuf_136, 0, MaPeriod, 0, MaType, Li_40);
Code: Select all
rsiMa[i] = iMAOnArray(rsi,0, MaPeriod, 0, MaType, i);
Sorry, have no idea how to do this.
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..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
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...
Think it can be done, just don't know how, been looking for something similar code wise but haven't found anything.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?