Page 42 of 86

Re: Volume Indicators for MT4

Posted: Thu Jan 20, 2022 8:55 pm
by sal
kvak wrote: Thu Jan 20, 2022 11:35 am Added DSL levels, try....Maybe even a little smoothing doesn't look bad
Dear Kvak
any change to make arrows based on slope breakout method..
see snap the breaking out area..
for expirement basis :)

Re: Volume Indicators for MT4

Posted: Fri Jan 21, 2022 10:54 am
by kvak
sal wrote: Thu Jan 20, 2022 8:55 pm Dear Kvak
any change to make arrows based on slope breakout method..
see snap the breaking out area..
for expirement basis :)
Added arrows and menu for floating levels. But for arrows on your picture, is mission impossible :)

Re: Volume Indicators for MT4

Posted: Fri Jan 21, 2022 11:01 am
by kvak
sal wrote: Thu Jan 20, 2022 5:10 pm Added DSL levels, try....Maybe even a little smoothing doesn't look bad

Dear Kvak
kindly see this snap. the colour not change inmarked location as per the setting selection!
can you tell me which is the other opposite level mean!!
may i request, possible to get a float level accorrdingly to the scale
some time level is far away and some time too close to zero level
If you see picture i think that you understand what oposite level mean.....trend-color continue to next trend-color change.
Dont use period 1 or add levels to not visible....dont know whats do this color problems...
Sorry for my English :)

Re: Volume Indicators for MT4

Posted: Sat Jan 22, 2022 9:57 pm
by chojnak
Koalala wrote: Fri Nov 26, 2021 1:10 am why is H4 special to you ? Do you have a detailed exposition of your new method ?
Sure,

I have tried all timeframes.
Below H4 - to much noise IMHO.
Above H4 - to much time to wait for a good signal, so you'll miss a lot of possibilities to trade.
H4 is a good timeframe for swing trading with good TP/SL ratio (2 to 3:1, sometimes bigger)

Best regards, J.

Re: Volume Indicators for MT4

Posted: Sun Jan 30, 2022 3:58 am
by Darks
Darks wrote: Mon Jan 17, 2022 7:13 pm Posted on code base and also adding here.

Force index is a tool that already tells the power(volume) used to move the price of an asset. In addition to that this new implementation provides bands based on volume and volatility. Breakouts from these bands is easily visible with the color change. Expansion and contraction of bands can hint rise and fall of volatility.

Usage:-

Use color changes as breakout signals or reversal signals depending on the state of the market.
Image
Multi time frame version of the same

Re: Volume Indicators for MT4

Posted: Tue Feb 01, 2022 7:39 am
by Kenrobert1
mrtools wrote: Thu Jun 10, 2021 4:14 am Arrows added.
Image
Please, Mrtools can you help me update this indicator so it doesn't erase the levels I add to it every time I tweak it or close my mt4. I always have to redo them again for as many charts I have on every single time. Thank you sir

Re: Volume Indicators for MT4

Posted: Tue Feb 01, 2022 7:44 am
by mrtools
Kenrobert1 wrote: Tue Feb 01, 2022 7:39 am Please, Mrtools can you help me update this indicator so it doesn't erase the levels I add to it every time I tweak it or close my mt4. I always have to redo them again for as many charts I have on every single time. Thank you sir
Could you post the indicator or the link please.

Re: Volume Indicators for MT4

Posted: Tue Feb 01, 2022 7:58 am
by Kenrobert1
mrtools wrote: Tue Feb 01, 2022 7:44 am Could you post the indicator or the link please.
Ok sir. Here it is.
download/file.php?id=3391584

Re: Volume Indicators for MT4

Posted: Tue Feb 01, 2022 8:04 am
by mrtools
Kenrobert1 wrote: Tue Feb 01, 2022 7:58 am Ok sir. Here it is.
download/file.php?id=3391584
The levels are controlled by external parameters.

Code: Select all

input double          OverBought           = 40;                // Overbought level
input double          OverSold             = -40;               // Oversold level
input ENUM_LINE_STYLE levSty               = STYLE_DOT;         // Levels style
input color           levClr               = clrSilver;         // Levels color

Re: Volume Indicators for MT4

Posted: Tue Feb 01, 2022 8:33 am
by Kenrobert1
mrtools wrote: Tue Feb 01, 2022 8:04 am The levels are controlled by external parameters.

Code: Select all

input double          OverBought           = 40;                // Overbought level
input double          OverSold             = -40;               // Oversold level
input ENUM_LINE_STYLE levSty               = STYLE_DOT;         // Levels style
input color           levClr               = clrSilver;         // Levels color
Ok now I see. Thank you so much