Page 1471 of 2042

Re: MT4 Indicator requests and ideas

Posted: Fri Jan 14, 2022 10:40 pm
by dmnik
Hello dear coders! one question is it possible to program level sensor 116 as shown on the right.

Re: MT4 Indicator requests and ideas

Posted: Sat Jan 15, 2022 12:04 am
by Hercs78
Dear Mr.Tools.
First of all, a belated, but sincere wish for a successful 2022.
Secondly, would you please be kind enough to add an audible voice alert to this indicator built by Mladen?
Looking forward to hearing from you when convenient.
Sincerely,
Hercs.

Re: MT4 Indicator requests and ideas

Posted: Sat Jan 15, 2022 4:51 am
by mrtools
Hercs78 wrote: Sat Jan 15, 2022 12:04 am Dear Mr.Tools.
First of all, a belated, but sincere wish for a successful 2022.
Secondly, would you please be kind enough to add an audible voice alert to this indicator built by Mladen?
Looking forward to hearing from you when convenient.
Sincerely,
Hercs.
Trend envelopes v2.mq4
Alerts added and posted here Various indicators

Re: MT4 Indicator requests and ideas

Posted: Sat Jan 15, 2022 6:06 pm
by wtrader13
Dear mrtools -

Would you please consider further upgrading the attached indicator with all averages, MTF including AHTF, and button?

Thank you very much for your great work.

Re: MT4 Indicator requests and ideas

Posted: Sat Jan 15, 2022 11:36 pm
by sal
Mr.tools/ expert coders
Please make update this indicator based on below condition

DOWN ARROW!!
1bearish body(red) +3 bullish body (green) +1 bearish body (red)

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 16, 2022 12:44 am
by tildenkatz
Dear Mrtools,

hope you are healty,

here is an ea which using sup-dem areas and getting in and out positions according to indicator..

but!.

it's only opening sell position and only for once (waiting to close position for open a new one even if there are lots of signals to open sell positions).. is it possible to edit it be able to get in multiple positions for sell??

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 16, 2022 7:46 am
by A_5
DTRCT wrote: Tue Jan 11, 2022 3:11 pm Dear coder.

Please add mtf to this indicator, smLazyHedging TrendOsc
Image

Thank you.
That indicator repaints, check it out very well, sm indicators are subtle repainter except smtrix

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 16, 2022 1:45 pm
by mrtools
wtrader13 wrote: Sat Jan 15, 2022 6:06 pm Dear mrtools -

Would you please consider further upgrading the attached indicator with all averages, MTF including AHTF, and button?

Thank you very much for your great work.
Posted a version here Various indicators

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 16, 2022 1:54 pm
by mrtools
tildenkatz wrote: Sun Jan 16, 2022 12:44 am Dear Mrtools,

hope you are healty,

here is an ea which using sup-dem areas and getting in and out positions according to indicator..

but!.

it's only opening sell position and only for once (waiting to close position for open a new one even if there are lots of signals to open sell positions).. is it possible to edit it be able to get in multiple positions for sell??
Not sure maybe on lines 47 and 54 you can try changing

Code: Select all

if(OrdersTotalT(OP_SELL)==0 && Ask>current_res && current_res!=last_res)

Code: Select all

if(OrdersTotalT(OP_BUY)==0 && Bid<_sup && _sup!=0 && last_sup!=_sup)
to something like

Code: Select all

input int maxSellOrders = 3;
input int maxBuyOrders = 3;

Code: Select all

if(OrdersTotalT(OP_SELL)==maxSellOrders && Ask>current_res && current_res!=last_res)

Code: Select all

if(OrdersTotalT(OP_BUY)==maxBuyOrders&& Bid<_sup && _sup!=0 && last_sup!=_sup)
might work.

Re: MT4 Indicator requests and ideas

Posted: Sun Jan 16, 2022 1:55 pm
by mrtools
sal wrote: Sat Jan 15, 2022 11:36 pm Mr.tools/ expert coders
Please make update this indicator based on below condition

DOWN ARROW!!
1bearish body(red) +3 bullish body (green) +1 bearish body (red)
Sorry no idea what you are asking.