This RSI+BB indicator is good for reversal and may i request to make arrow based on the below condition
After RSI crosses down from OB level ; crosses MA line & BB upper channel at same
see snap for clarity
Re: MT4 Indicator requests and ideas
15042Hi MrTools,
Please see the attached picture you'll note that the indicator is indicating an arrow value in Buffer 8 whereas it is not readable by Mladens Buffers explorer.
So if possible can you make these values of the four arrows buffers readable in some way.
Many thanks
Please see the attached picture you'll note that the indicator is indicating an arrow value in Buffer 8 whereas it is not readable by Mladens Buffers explorer.
So if possible can you make these values of the four arrows buffers readable in some way.
Many thanks
Happy Happy Joy Joy
Re: MT4 Indicator requests and ideas
1504311 posts in 5 years lmafaaooo...........XeroforeX wrote: Thu Mar 03, 2022 10:59 pm Hi MrTools,
Please see the attached picture you'll note that the indicator is indicating an arrow value in Buffer 8 whereas it is not readable by Mladens Buffers explorer.
So if possible can you make these values of the four arrows buffers readable in some way.
Many thanks
- These users thanked the author moey_dw for the post:
- ChuChu Rocket
Official Forex-station GIF animator at your service 
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com
See a GIF with Forex-station.com on it? I probably made it
The best divergence indicator in the world.
Real news exists: Infowars.com
Re: MT4 Indicator requests and ideas
15044iT'S N0t pOsSibLe MlAdEn iNdICatOrs aRe aLwAyS PeRfeCtXeroforeX wrote: Thu Mar 03, 2022 10:59 pm Hi MrTools,
Please see the attached picture you'll note that the indicator is indicating an arrow value in Buffer 8 whereas it is not readable by Mladens Buffers explorer.
So if possible can you make these values of the four arrows buffers readable in some way.
Many thanks
Scalping the Century TimeFrame since 1999
Re: MT4 Indicator requests and ideas
15045I have these 2 scripts which are basically meant for scalping.
They add either a fixed lot or RR based on SL.
It puts the SL above the previous candle high or low depending on if you are buying or selling.
I was wondering if someone can help change it, so it doesn't look at the previous candle, but 2 candles back.
They add either a fixed lot or RR based on SL.
It puts the SL above the previous candle high or low depending on if you are buying or selling.
I was wondering if someone can help change it, so it doesn't look at the previous candle, but 2 candles back.
Cheers,
Opita
Opita
Re: MT4 Indicator requests and ideas
15046That is not default setting and that is why you can not read that value with buffers explorer (you have changed the setting on the lower indicator - the setting read by buffers explorer and your displayed indicator are different). To access those values with specific settings you have to make iCustom() call with same parameter valuesXeroforeX wrote: Thu Mar 03, 2022 10:59 pm Hi MrTools,
Please see the attached picture you'll note that the indicator is indicating an arrow value in Buffer 8 whereas it is not readable by Mladens Buffers explorer.
So if possible can you make these values of the four arrows buffers readable in some way.
Many thanks
Nothing wrong with mrtools' indicator
______________________________
As of why a general purpose buffer reader in metatrader 4 can not read values of an indicator attached to a chart with arbitrary settings please read the metatrader documentation - it simply does not work as metatrader 5 (in which it would be possible)
Re: MT4 Indicator requests and ideas
15047Maybe this one here.constbln wrote: Thu Mar 03, 2022 5:05 am------------------------------------------------------------------------------------------------Code: Select all
adx indicator indicator(title="Average True Range", shorttitle="ATR", overlay=false, timeframe="", timeframe_gaps=true) length = input.int(title="Length", defval=14, minval=1) smoothing = input.string(title="Smoothing", defval="RMA", options=["RMA", "SMA", "EMA", "WMA"]) ma_function(source, length) => switch smoothing "RMA" => ta.rma(source, length) "SMA" => ta.sma(source, length) "EMA" => ta.ema(source, length) => ta.wma(source, length) plot(ma_function(ta.tr(true), length), title = "ATR", color=color.new(#B71C1C, 0))
but as you re looking for the rma I think you will find the tradingview code here
https://stackoverflow.com/questions/480 ... internally (I think you understand it better than I do)
--------------------------------------
please let me know if u need anything else
Re: MT4 Indicator requests and ideas
15048When both cci's cross zero?traderokey wrote: Thu Mar 03, 2022 12:46 pm Hi Mrtools,
I like the !!haos cci visual indicator but at the moment the color of the histogram bars is the same above and below the zero line.
To spot trend changes easily, is it possible to add an option where the bars change color when they cross above or below the zero line.
Thanks.
!!haos (cci) visual alerts (mtf + divergence).ex4
Re: MT4 Indicator requests and ideas
15049Looking in the code can't see anywhere where it is placing the stop loss on the candle high or low, far as I can tell it's just placing the order according to risk.opita wrote: Fri Mar 04, 2022 2:23 am I have these 2 scripts which are basically meant for scalping.
They add either a fixed lot or RR based on SL.
It puts the SL above the previous candle high or low depending on if you are buying or selling.
I was wondering if someone can help change it, so it doesn't look at the previous candle, but 2 candles back.
Re: MT4 Indicator requests and ideas
15050The risk is based on the previous candle.mrtools wrote: Fri Mar 04, 2022 5:37 am Looking in the code can't see anywhere where it is placing the stop loss on the candle high or low, far as I can tell it's just placing the order according to risk.
Grab a demo and choose your chart timeframe, it will show what I mean.
Cheers,
Opita
Opita