Page 879 of 2170

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 5:06 am
by arsd
Mr Tools - Please add arrows " WHEN WHITE HISTO COMES"for the following indi : Momentum - Scalper (mtf).mq4 which is posted in post no: 1911 of "Something intresting please post here" link

Regards

ARSD

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 5:18 am
by mrtools
shinnosuke wrote: Thu Mar 19, 2020 3:18 pm
Thanks cladi, the MBFX timing is match. But the SSL channel is not same. The one that i look is there is another 2nd time period sets like in this picture :
Cap0.jpg

May be u have a SSL channel like that one? Or mr tools or some one else here can help?
Btw thanks cladi for your share. really appreciate it.
Best regards.
The mbfx timing is a repainting version of rsx, as far a SSL channel not sure but have it in a bar version.

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 2:36 pm
by DIM1NE
Hi,
4Sessions indi draws this rectangle with first template load, but I don't need it. Other rectangles are drawn correctly. When I load this template for the second time it fortunately disappears. Could this one be fixed and removed?

No other indicators are needed.

Thank you in advance.

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 6:42 pm
by MemphisRokudo
mrtools wrote: Thu Mar 19, 2020 4:59 am

Try it out.
Can you add alerts when it cross over?

Thank you

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 10:39 pm
by Gasolo92
Hello,

I am contacting you to know if it is possible to fix the indicator attached?

We can t change the color, the width and if possible know that S/R is from wich timeframe.

Thanks in advance

Re: MT4 Indicator requests and ideas

Posted: Fri Mar 20, 2020 11:54 pm
by Orbis
Hi,

Would anyone encode to MT4 this ProRealTime indicator code?

Code: Select all

// Name : BreakSearch indicator
// author : patmaba
// date : 2017/dec/05
// 
// Purpose
// -------
// This indicator indicates on the graph, an event Breakout in green color. 
// In red, a BreakDown.
//
// Parameter
// ---------
// It uses a parameter p to determine the period. by default it is set to 10.
//
// Description
// -----------
// The basic indicator is the index force coupled with the Bollinger Band to identify a statistical anomaly on the closing price caused by volumes.
// If the upper band of the bollinger bands is exceeded by the forceindex, it's mean a BreakOut. A BreakDown when the lower band of bollinger is exceeded.


fi=ForceIndex(close)
bu=BollingerUp[p](fi)
bd=BollingerDown[p](fi)

breakValue=0

// color variable
redColorValue=0
greenColorValue=0

// Check statistical anomaly(BollingerBands) on price by volume(ForceIndex)
if fi >= bu then // here the BreakOut
 breakValue=1
 greenColorValue=255
elsif fi <= bd then // here the BreakDown
 breakValue=-1
 redColorValue=255
endif

return breakValue coloured(redColorValue,greenColorValue,0) style(histogram) as "BreakOut/Down"
The indicator looks like this.

Thanks!

Re: MT4 Indicator requests and ideas

Posted: Sat Mar 21, 2020 12:05 am
by Ogee
Gasolo92 wrote: Fri Mar 20, 2020 10:39 pm Hello,

I am contacting you to know if it is possible to fix the indicator attached?

We can t change the color, the width and if possible know that S/R is from wich timeframe.

Thanks in advance
Hi, you can change the colours and the line style of the mq4 file from the MetaEditor, don't remember finding a means to change line width.
If you hover the mouse over the line the time frame will reveal.

Don't forget to hit the Compile button after completing changes.

Re: MT4 Indicator requests and ideas

Posted: Sat Mar 21, 2020 12:24 am
by medotrader
could this indicator made non repaint also in mtf mode the stepping acts in a weired way it paints both colors until refreshed

Re: MT4 Indicator requests and ideas

Posted: Sat Mar 21, 2020 3:21 am
by arsd
Mr Tools kindly add arrows to the attached indicator - Request to add it in such a way that arrows to appear when white histo arrives and arrows to change direction when white histo changes direction.

Regards

ARSD

Re: MT4 Indicator requests and ideas

Posted: Sat Mar 21, 2020 4:26 am
by mrtools
arsd wrote: Sat Mar 21, 2020 3:21 am Mr Tools kindly add arrows to the attached indicator - Request to add it in such a way that arrows to appear when white histo arrives and arrows to change direction when white histo changes direction.

Regards

ARSD
Already tried adding the arrows it didn't work so working on a different way to do them with this, but not sure it will work.