Can you post settings?ionone wrote: Mon Jun 30, 2025 11:37 pm yes but I NEED to add the extension .ex4 otherwise it won't work
also I just had another error from the same indi :thanksCode: Select all
2025.06.30 15:30:04.265 SSL (eAverages + dots + bands + filter) GBPUSD,H1: zero divide in 'SSL (eAverages + dots + bands + filter).mq4' (1170,115)
Re: MT4 Indicator requests and ideas
21462Version with vertical lines is HEREkimtaehyung wrote: Mon Jun 30, 2025 5:11 pm thank u so much sir..can i ask for vertical line too please?
Re: MT4 Indicator requests and ideas
21463shit I didn't save the settings, i'm dumb
but I think you can just look at the code it must be a "divide by zero" error, just filter 0 values from the divider it should be ok
Scalping the Century TimeFrame since 1999
Re: MT4 Indicator requests and ideas
21464i think that the indi uses the full name with ..ex4 extension to verify the namemrtools wrote: Tue Jul 01, 2025 4:01 am I imagine the problem is in your iCustom call, other than that have no idea.
and when you compare the name, you only compare the name without the extension.
what I mean is your code is something like that :
Code: Select all
if (name != "Advanced StepRSI + smoothing + fl's + alerts + arrows")
Print("error");
Code: Select all
if (name != "Advanced StepRSI + smoothing + fl's + alerts + arrows" &&
name != "Advanced StepRSI + smoothing + fl's + alerts + arrows.ex4")
Print("error");
Scalping the Century TimeFrame since 1999
Re: MT4 Indicator requests and ideas
21465No, the name protection is a function embedded that automatically reads the name in the mt4 file path. Have not had any issues with EA's with this function, have found, for the most part found the problem was the iCustom call.ionone wrote: Tue Jul 01, 2025 5:17 pm i think that the indi uses the full name with ..ex4 extension to verify the name
and when you compare the name, you only compare the name without the extension.
what I mean is your code is something like that :and should rather be :Code: Select all
if (name != "Advanced StepRSI + smoothing + fl's + alerts + arrows") Print("error");
otherwise it's impossible to embed the indiCode: Select all
if (name != "Advanced StepRSI + smoothing + fl's + alerts + arrows" && name != "Advanced StepRSI + smoothing + fl's + alerts + arrows.ex4") Print("error");
Re: MT4 Indicator requests and ideas
21466hmm I seemrtools wrote: Tue Jul 01, 2025 8:31 pm No, the name protection is a function embedded that automatically reads the name in the mt4 file path. Have not had any issues with EA's with this function, have found, for the most part found the problem was the iCustom call.
sorry I thought this was you coding the whole thing....
now I need Metaquotes team in my DMs lol
thanks for taking time to answer

Jeff
Scalping the Century TimeFrame since 1999
Re: MT4 Indicator requests and ideas
21467Hi Mr. Tools and Coders respectively,
Hope everyone is doing well. Is it possible to remove 4 ma line from this indicator? I need only 15 ma line. I'd greatly appreciate it!!!!
Hope everyone is doing well. Is it possible to remove 4 ma line from this indicator? I need only 15 ma line. I'd greatly appreciate it!!!!
Re: MT4 Indicator requests and ideas
21468Please add arrows to color change
Re: MT4 Indicator requests and ideas
21469Hello, that indicator and arrows would not be very accurate.Eis wrote: Wed Jul 02, 2025 2:26 am Please add arrows to color change![]()
above and below the candlesticks, regards
Re: MT4 Indicator requests and ideas
21470Yes i understand it is only confirmation used on a higher timeframe as to make decision making more clearmrtools wrote: Wed Jul 02, 2025 4:03 am Hello, that indicator and arrows would not be very accurate.