Page 21 of 26

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Thu Jul 18, 2024 11:35 am
by AssetOne
limevanilla wrote: Sun Jul 14, 2024 10:32 pm Sorry, but it seem like this one cannot be open with 1420 build.
Thanks.

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Mon Jul 22, 2024 10:06 am
by euro_rapp
limevanilla wrote: Sun Jul 14, 2024 10:32 pm Sorry, but it seem like this one cannot be open with 1420 build.
Here the new 1420 version.

Please thank my imaginary Waifu Alya-chan :Rofl:

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Tue Jul 23, 2024 2:20 am
by limevanilla
euro_rapp wrote: Mon Jul 22, 2024 10:06 am Here the new 1420 version.

Please thank my imaginary Waifu Alya-chan :Rofl:
Thank you very much.

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Tue Jul 23, 2024 8:10 pm
by mk099
Hi, is there any ex4 or ex5 indicator for PO3, if it does can someone plz share :)

BoS/CHoCH indicator

Posted: Sat Aug 03, 2024 3:51 am
by ionone
I made a BoS/CHoCH indicator whatever it's called because I could not find any valuable with code and everything

I hope all works as it should

you can filter only if you want a big retracement before the signal (with the setting "Height")

you need to access the setting in an EA this way :

Code: Select all

double b1;
double s1;

double b  = iCustom(NULL,0,IndiName,bars,ATRDistMul,ATRDistMulHeight,VolatilityType,bbH,bbL,hhmin,llmin,  0, i+1);
double b_ = iCustom(NULL,0,IndiName,bars,ATRDistMul,ATRDistMulHeight,VolatilityType,bbH,bbL,hhmin,llmin,  0, i);
if (b > 0 && b < EMPTY_VALUE)
if (b_ <= 0 || b_ >= EMPTY_VALUE)
   b1 = b;
    

double s  = iCustom(NULL,0,IndiName,bars,ATRDistMul,ATRDistMulHeight,VolatilityType,bbH,bbL,hhmin,llmin,  1, i+1);
double s_ = iCustom(NULL,0,IndiName,bars,ATRDistMul,ATRDistMulHeight,VolatilityType,bbH,bbL,hhmin,llmin,  1, i);
if (s > 0 && s < EMPTY_VALUE)
if (s_ <= 0 || s_ >= EMPTY_VALUE)
   s1 = s;
otherwise you can have some future reading Jeff

Re: BoS/CHoCH indicator

Posted: Sat Aug 03, 2024 4:31 pm
by ionone
ionone wrote: Sat Aug 03, 2024 3:51 am I made a BoS/CHoCH indicator whatever it's called because I could not find any valuable with code and everything

I hope all works as it should

you can fil
Jeff
by the way it will not wait for signal bar to be closed to issue a signal : the signal is isued as soon as the level is crossed (shifted by entry vshift)

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Sun Aug 04, 2024 7:19 pm
by ionone
new version !

I added the possibility to determine the number of bars left to the pivot rather than to use twice the length

I also added the period of the ATR

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Mon Aug 05, 2024 5:47 pm
by ionone
I added another "bbLeft" possibility that way simply replacing the twice the length by any number of bars you need
this is called "bbLeft 2". This is closer to what I wanted to do originally in version 110, but I got sidetracked lol
be careful if you use lower bbH and bbL values you need to lower hhmin and llmin as well otherwise you won't get any signals

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Fri Aug 09, 2024 7:31 am
by snoopyzam
euro_rapp wrote: Mon Jul 22, 2024 10:06 am Here the new 1420 version.

Please thank my imaginary Waifu Alya-chan :Rofl:
Hi, thanks for sharing an amazing indicator. I need to ask if you can make this file version free for the future in case if there is again any update. Thank you.

Re: Smart Money Concept (SMC) indicators for MT4

Posted: Tue Aug 13, 2024 5:06 pm
by dmnik
;) :thumbup: