Re: MT4 Indicator requests and ideas

8782
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

8786
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

8787
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.
Attachments
These users thanked the author Ogee for the post (total 2):
Jimmy, ChuChu Rocket

Re: MT4 Indicator requests and ideas

8790
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.


Who is online

Users browsing this forum: adriano.ecker, Bing [Bot], DotNetDotCom [Bot], Starfish, TEAMTRADER, TECHHDATE07, TheJurgFX, Trendiction [Bot], Yandex [Bot] and 127 guests