A request to the coding crew at forex-station. Would it be possible please to further enhance this indicator for me.
Please add a Price Method as shown in the picture.
Many Thanks,
Regards,
Brendon.
Re: MT4 Indicator requests and ideas
18652awesome kvak,kvak wrote: Wed May 24, 2023 8:49 am Here is simply version for test, I rewrote the oma rsi, but I was looking for a mistake, now they are the same as the original....I'll finish it tomorrow, it's late and I'm going to bed, try it and give me feedback....
it will be more perfect if we can have a divergence arrows, just an idea if you have times..

regards
Re: MT4 Indicator requests and ideas
18653may alerts, dsema & fema please be added? thank you
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: MT4 Indicator requests and ideas
18654Dear Mr Tools/Kvak
I was wandering what a full set of averages would look like if it was added to this interesting indicator posted by Banzai ,could it be done ?
Your work always appreciated.
Regards
Naughty 77
I was wandering what a full set of averages would look like if it was added to this interesting indicator posted by Banzai ,could it be done ?
Your work always appreciated.
Regards
Naughty 77
Re: MT4 Indicator requests and ideas
18655Karobein Oscillator [TradingView]
mrtools and kvak, here is an interesting oscillator I found on TradingView that might be worth a port into MT4.
Here is the description of the indicator below, although I could not find any information about its creator when I did a search on Google:
This is the code, clocking in at 14 lines:
If somebody takes this on, I would only have two additional modifications to suggest:
1) Allow the use of multiple moving average types, since this indicator by default is based around the EMA.
2) Allow users to set the overbought and oversold lines in the "Inputs".
A thank you as always to all of the coders on this forum who tirelessly work to have these requests fulfilled!
mrtools and kvak, here is an interesting oscillator I found on TradingView that might be worth a port into MT4.
Here is the description of the indicator below, although I could not find any information about its creator when I did a search on Google:
Developed by Emily Karobein, the Karobein oscillator is an oscillator that aim to rescale smoothed values with more reactivity in a range of (0,1)
Calculation
The scaling method is similar to the one used in a kalman filter for the kalman gain.
We first average the up/downs x, those calculations are similar to the ones used for calculating the average gain/loss in the relative strength index.
a = ema(src < src ? x : 0,length)
b = ema(src > src ? x : 0,length)
where src is a exponential moving average of length period and x is src/src in the standard calculations, but anything else can be used as long as x > 0.
Then we rescale the results.
c = x/(x + b)
d = 2*(x/(x + c*a)) - 1
How To Use
It is better to use centerline-cross/breakouts/signal line.
In general when we use something smooth as input in oscillators, breakouts are better than reversals, you can see this with the stochastic and rsi.
So a simple approach could be buying when crossing over 0.8 and selling when crossing under 0.2.
Here is the balance of a strategy using those conditions, length = 50.
This is the code, clocking in at 14 lines:
Code: Select all
/@version=2
study("Karobein Oscillator")
length = input(50)
//
source = input(close)
src = ema(source,length)
a = ema(src < src[1] ? src/src[1] : 0,length)
b = ema(src > src[1] ? src/src[1] : 0,length)
c = (src/src[1])/(src/src[1] + b)
d = 2*((src/src[1])/(src/src[1] + c*a)) - 1
//
plot(d,color=orange,transp=0)
hline(0.8)
hline(0.2)
If somebody takes this on, I would only have two additional modifications to suggest:
1) Allow the use of multiple moving average types, since this indicator by default is based around the EMA.
2) Allow users to set the overbought and oversold lines in the "Inputs".
A thank you as always to all of the coders on this forum who tirelessly work to have these requests fulfilled!
Re: MT4 Indicator requests and ideas
18656It reminds me of Schaff Trend a little.TransparentTrader wrote: Thu May 25, 2023 4:59 am Karobein Oscillator [TradingView]
mrtools and kvak, here is an interesting oscillator I found on TradingView that might be worth a port into MT4.
Here is the description of the indicator below, although I could not find any information about its creator when I did a search on Google:
This is the code, clocking in at 14 lines:
Code: Select all
/@version=2 study("Karobein Oscillator") length = input(50) // source = input(close) src = ema(source,length) a = ema(src < src[1] ? src/src[1] : 0,length) b = ema(src > src[1] ? src/src[1] : 0,length) c = (src/src[1])/(src/src[1] + b) d = 2*((src/src[1])/(src/src[1] + c*a)) - 1 // plot(d,color=orange,transp=0) hline(0.8) hline(0.2)
If somebody takes this on, I would only have two additional modifications to suggest:
1) Allow the use of multiple moving average types, since this indicator by default is based around the EMA.
2) Allow users to set the overbought and oversold lines in the "Inputs".
A thank you as always to all of the coders on this forum who tirelessly work to have these requests fulfilled!
- These users thanked the author GoldenBrett90 for the post:
- ionone
My goal is to make advanced algorithm strategies, coded and simplified.
Trading psychology and ease-of-use are top priorities.
-GoldenBrett90
Trading psychology and ease-of-use are top priorities.
-GoldenBrett90
Re: MT4 Indicator requests and ideas
18657Try here
- These users thanked the author mrtools for the post:
- Chickenspicy
Re: MT4 Indicator requests and ideas
18658Posted a version hereTransparentTrader wrote: Thu May 25, 2023 4:59 am Karobein Oscillator [TradingView]
mrtools and kvak, here is an interesting oscillator I found on TradingView that might be worth a port into MT4.
Here is the description of the indicator below, although I could not find any information about its creator when I did a search on Google:
This is the code, clocking in at 14 lines:
Code: Select all
/@version=2 study("Karobein Oscillator") length = input(50) // source = input(close) src = ema(source,length) a = ema(src < src[1] ? src/src[1] : 0,length) b = ema(src > src[1] ? src/src[1] : 0,length) c = (src/src[1])/(src/src[1] + b) d = 2*((src/src[1])/(src/src[1] + c*a)) - 1 // plot(d,color=orange,transp=0) hline(0.8) hline(0.2)
If somebody takes this on, I would only have two additional modifications to suggest:
1) Allow the use of multiple moving average types, since this indicator by default is based around the EMA.
2) Allow users to set the overbought and oversold lines in the "Inputs".
A thank you as always to all of the coders on this forum who tirelessly work to have these requests fulfilled!
- These users thanked the author mrtools for the post:
- TransparentTrader
Re: MT4 Indicator requests and ideas
18659Good afternoon, could you be so kind to fix this indicator,please? The problem is that Weekly and Monthly levels do not display on M1 and sometimes Monthly levels do not display on M5, also could be posible to add a middle values lines width option?
Thanks a lot for your time, efford and generosity.
Re: MT4 Indicator requests and ideas
18660Hello mrtools and other eminent coders, All i need is for the horizontal lines to have individual color, M1,M5,M15,M30,H1,H4,D1,W1,MN,all to be coded in a way that allows user to choose any color for any time frame, so that one could easily identify the SR at a glance, ecpecially, where we have confluence of SR. I will very much appreciate it if anyone could help in coding it. Thanks for your precious time.
“My losses have taught me that I must not begin to advance until I am sure I shall not have to retreat. But if I cannot advance I do not move at all.” –Jesse Livermore