Page 113 of 129

Re: Various (Specialist) indicators for MT4

Posted: Mon Jul 31, 2023 1:49 pm
by mrtools
太虚一毫 wrote: Thu Jul 20, 2023 11:29 pm Currently, OBV, CCI, REX, WPR are all configured with Donchian Channe. :thumbup:

So, which indicator is the best? It's worth looking into.

When the teacher is free, try adding donchian channe to the Stochastic indicator.

The merit is immeasurable!
It's a good idea, but wpr and stochastic are basically the same.

Re: Various (Specialist) indicators for MT4

Posted: Mon Aug 07, 2023 2:59 pm
by nbibu
mrtools wrote: Thu May 25, 2023 7:08 am Karobein Oscillator

Alex Grover released the Karobein Oscillator on TradingView which is a code that was originally developed by Emily Karobein and is an oscillator that aims 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 the Karobein Oscillator

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.

Made this version with color change on slope, seems okay but wondering how close it is to Alex Grover's TV version.
Image
hi! would it be possible to add arrows and alerts for this indicator?
thank u.

Re: Various (Specialist) indicators for MT4

Posted: Tue Aug 08, 2023 3:05 am
by sal
hello all
any one has bullish inverted hammer and bearish hammer bar indicator mt4. if have, please share
please , only this particular needs not all candle pattern.. :)

Re: Various (Specialist) indicators for MT4

Posted: Tue Aug 08, 2023 6:04 am
by mrtools
nbibu wrote: Mon Aug 07, 2023 2:59 pm hi! would it be possible to add arrows and alerts for this indicator?
thank u.
Added arrows and alerts.

Re: Various (Specialist) indicators for MT4

Posted: Tue Aug 08, 2023 1:59 pm
by sal
sal wrote: Tue Aug 08, 2023 3:05 am hello all
any one has bullish inverted hammer and bearish hammer bar indicator mt4. if have, please share
please , only this particular needs not all candle pattern.. :)
mr,tools/kavak
i find similar but need to update
in this indicator HMR 3 and HMR 4 Needs to show bullish inverted hammer and bearish hammer bar separate arrows direction (bearish for down and bullish for up)

Re: Various (Specialist) indicators for MT4

Posted: Sat Aug 12, 2023 3:30 am
by mrtools
nbibu wrote: Mon Aug 07, 2023 2:59 pm hi! would it be possible to add arrows and alerts for this indicator?
thank u.
Added smoothing option to the price (if smoothing period > 1), a filtering option for price and or final values (if filter > 0), and a signal line option. Karobein line coloring, alerts, and arrows are either by line slope are line/signal cross.

Re: Various (Specialist) indicators for MT4

Posted: Sat Aug 12, 2023 12:07 pm
by Steam1
mrtools wrote: Sat Aug 12, 2023 3:30 am Added smoothing option to the price (if smoothing period > 1), a filtering option for price and or final values (if filter > 0), and a signal line option. Karobein line coloring, alerts, and arrows are either by line slope are line/signal cross.
Image
Hi Mr tools, Can you do MTF please
Regards Steam1

Re: Various (Specialist) indicators for MT4

Posted: Sat Aug 12, 2023 1:31 pm
by mrtools
Steam1 wrote: Sat Aug 12, 2023 12:07 pm Hi Mr tools, Can you do MTF please
Regards Steam1
Added mtf.

Re: Various (Specialist) indicators for MT4

Posted: Sat Aug 12, 2023 10:59 pm
by sal
mrtools wrote: Sat Aug 12, 2023 1:31 pm Added mtf.
Image
mr.tools
can you please an dot and alert when the blue signal line enter inside level and exit level

Re: Various (Specialist) indicators for MT4

Posted: Sun Aug 13, 2023 3:25 pm
by mrtools
sal wrote: Sat Aug 12, 2023 10:59 pm mr.tools
can you please an dot and alert when the blue signal line enter inside level and exit level
Just got in and it's late here will see what i can do with it tomorrow.