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
8782The mbfx timing is a repainting version of rsx, as far a SSL channel not sure but have it in a bar version.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.
Re: MT4 Indicator requests and ideas
8783Hi,
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.
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
8785
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
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
8786Hi,
Would anyone encode to MT4 this ProRealTime indicator code?
The indicator looks like this.
Thanks!
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"
Thanks!
Re: MT4 Indicator requests and ideas
8787Hi, 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.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
If you hover the mouse over the line the time frame will reveal.
Don't forget to hit the Compile button after completing changes.
- These users thanked the author Ogee for the post (total 2):
- Jimmy, ChuChu Rocket
Re: MT4 Indicator requests and ideas
8788could 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
8789Mr 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
Regards
ARSD
Re: MT4 Indicator requests and ideas
8790Already 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.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