Page 107 of 157

Sema7+123Triangles BT

Posted: Tue May 23, 2023 3:38 pm
by Jedidiah
Semafor7+123Triangles BT

This is my first work on it, and I coded the indicators a bit. .
SEMAFOR increased from 5 to 7.
I personally feel that 5 may not be enough. So the number of experimental ones increased to seven


Thanks to Mr. andrei-1 for his help. I have successfully solved the problem. Thank you very much
Grateful

Please download the repaired version again

Re: Various (Specialist) indicators for MT4

Posted: Tue May 23, 2023 9:04 pm
by Chickenspicy
mrtools wrote: Mon May 22, 2023 9:54 am Absolute Strength Difference indicator with MA Filters + Stochastic, RSI & ADX Calculation

This is an absolute strength difference averages zero based histogram. The difference is based on the difference between the smoothed bears and the smoothed bulls. Histogram has auto width capability. Absolute strength can be based on Rsi calculations, Stochastic calculations, or Adx calculations
i could be wrong but it seems like calculations are more one sided
this is the stochastic 10 - 5 dsema

Re: Various (Specialist) indicators for MT4

Posted: Wed May 24, 2023 2:07 am
by andrei-1
Chickenspicy wrote: Tue May 23, 2023 9:04 pm calculations are more one sided
It looks interesting. :idea:

Re: Various (Specialist) indicators for MT4

Posted: Wed May 24, 2023 2:21 am
by Jedidiah
It may be redundant, but I prefer to add all the fibonacci sequence
Except for the 13 that brings bad luck
:lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao: :lmao:

Re: Various (Specialist) indicators for MT4

Posted: Wed May 24, 2023 3:28 am
by mrtools
Chickenspicy wrote: Tue May 23, 2023 9:04 pm i could be wrong but it seems like calculations are more one sided
this is the stochastic 10 - 5 dsema
Image
Thanks for your feedback, you're right I forgot to remove the absolute values from the rsi and adx. Hopefully this version will be better. The pic is using rsi and adx. Need to do more research on the stochastic, it doesn't seem right.

Re: Various (Specialist) indicators for MT4

Posted: Wed May 24, 2023 4:09 am
by Jedidiah
mrtools wrote: Wed May 24, 2023 3:28 am Thanks for your feedback, you're right I forgot to remove the absolute values from the rsi and adx. Hopefully this version will be better. The pic is using rsi and adx. Need to do more research on the stochastic, it doesn't seem right.
Image
Dear Mr.Tools, can you help me to see what is wrong in the code I wrote. 123Triangles is now invalid and unusable. Can you help me fix it?
Thank you for your valuable time and energy. Grateful

Re: Various (Specialist) indicators for MT4

Posted: Wed May 24, 2023 1:16 pm
by Jedidiah
Jedidiah wrote: Wed May 24, 2023 4:09 am Dear Mr.Tools, can you help me to see what is wrong in the code I wrote. 123Triangles is now invalid and unusable. Can you help me fix it?
Thank you for your valuable time and energy. Grateful
Semafor8+123Triangles BT


123Triangles has been fixed and can now be displayed. . This is a small mistake. . . I might be a coding genius. . . :lmao:

Re: Various (Specialist) indicators for MT4

Posted: Thu May 25, 2023 3:28 am
by kkfx
Banzai wrote: Tue May 16, 2023 7:19 am d9 Particle Oscillator
(on/off button)

You can place the button on the main chart or
in the sub window.


Watch the divergences too.
Image
Hi, Can you add price types and averages as option for input of d9 oscillator?

Re: Various (Specialist) indicators for MT4

Posted: Thu May 25, 2023 7:08 am
by mrtools
TransparentTrader wrote: Thu May 25, 2023 4:59 am Karobein Oscillator TradingView
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.

Re: Various (Specialist) indicators for MT4

Posted: Thu May 25, 2023 7:33 am
by TransparentTrader
mrtools wrote: Thu May 25, 2023 7:08 am Made this version, seems okay but wondering how close it is to the TV version.
Image

I have OANDA on TradingView and MT4, I can do a quick test and let you know later today.

Appreciate the quick turnaround! :Fire: