Page 1967 of 2170

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 10:12 am
by kvak
dmnik wrote: Tue Dec 05, 2023 9:02 am ;)
Hello everyone!

I little correct code lines....how you want use this levels?

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 3:34 pm
by dmnik
kvak wrote: Tue Dec 05, 2023 10:12 am I little correct code lines....how you want use this levels?
Image
https://www.prorealcode.com/prorealtime ... /atr-worm/

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 9:30 pm
by lukgoku
Hi Guys i'm searching for LuxAlgo Nadaraya Watson Envelop for mt4.

Anyone can help me?

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 9:58 pm
by Forexlearner
does anyone have a simple moving average indicator with a label next to it, like in the pic

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 10:33 pm
by Woodyz
lukgoku wrote: Tue Dec 05, 2023 9:30 pm Hi Guys i'm searching for LuxAlgo Nadaraya Watson Envelop for mt4.

Anyone can help me?
Go to the Lux Algo site.
I'm sure that is freely available for download there.......but don't quote me on that.

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 11:17 pm
by chris006
set Show Labels to true
Forexlearner wrote: Tue Dec 05, 2023 9:58 pm does anyone have a simple moving average indicator with a label next to it, like in the pic
Image

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 06, 2023 12:13 am
by Forexlearner
chris006 wrote: Tue Dec 05, 2023 11:17 pm set Show Labels to true
thanks, exactly what i was looking for

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 06, 2023 2:17 am
by Pucmola
hello friends, today I received an order for a fast M1 scalping for gold, since I don't do such super scalps, I needed to familiarize myself with it. two hours of scalping, but it's unreal ... my test template for new things and price action is equal to 190 euros without effort on gold. But to the point, is there anyone who specializes in this kind of scalping? i have a few questions, it would help me a lot ..please send me a message.

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 06, 2023 2:25 am
by dmnik
kvak wrote: Tue Dec 05, 2023 10:12 am I little correct code lines....how you want use this levels?
Image
Hello kvak! The issue with the indicator still persists: it seems that the channel lags and then suddenly appears. Please review this issue. Thank you for your attention!

This Pine Script for TradingView creates an indicator that visualizes channels based on the Average True Range (ATR). Here's a breakdown of the key aspects:

Settings:
Pips:

This parameter defines how far the upper and lower levels will be from the current minimum and maximum. A value of 0.5 likely represents half a pip.
ATR Length:

This parameter sets the period for calculating the Average True Range (ATR). In this case, 14 periods are used.
Multiplier for monATR2:

This parameter determines the multiplier for the second ATR level (monATR2), used to create a wider range.
Logic and Channel Construction:
ATR Calculation:

monATR - is the Average True Range for 14 periods.
monATR2 - is the doubled value of the Average True Range for the same period, multiplied by the multiplier.
Upper Levels:

up1, up2, up3, up4 - are calculated based on the previous and current minimum, decreased by pips, and increased by monATR or monATR2.
Lower Levels:

dn1, dn2, dn3, dn4 - are calculated based on the previous and current maximum, increased by pips, and decreased by monATR or monATR2.
Channel Construction:

The upper channel is built using the lines up3 and up4, represented by blue color.
The lower channel is built using the lines dn3 and dn4, represented by red color.
Display on the Chart:
The plot function is used to display linear plots with different colors and styles.
Upper lines are blue (#2196f3).
Lower lines are red (#ff5252).
The plots are drawn with a line thickness of 2 pixels for better visibility.
How It Works:
The channel is constructed around current and previous minimums and maximums, taking into account market volatility measured by ATR.
Four lines (upper and lower) allow visualizing potential support and resistance zones based on current volatility.

Re: MT4 Indicator requests and ideas

Posted: Wed Dec 06, 2023 2:34 am
by kvak
dmnik wrote: Wed Dec 06, 2023 2:25 am Hello kvak! The issue with the indicator still persists: it seems that the channel lags and then suddenly appears. Please review this issue. Thank you for your attention!

This Pine Script for TradingView creates an indicator that visualizes channels based on the Average True Range (ATR). Here's a breakdown of the key aspects:

Settings:
Pips:

This parameter defines how far the upper and lower levels will be from the current minimum and maximum. A value of 0.5 likely represents half a pip.
ATR Length:

This parameter sets the period for calculating the Average True Range (ATR). In this case, 14 periods are used.
Multiplier for monATR2:

This parameter determines the multiplier for the second ATR level (monATR2), used to create a wider range.
Logic and Channel Construction:
ATR Calculation:

monATR - is the Average True Range for 14 periods.
monATR2 - is the doubled value of the Average True Range for the same period, multiplied by the multiplier.
Upper Levels:

up1, up2, up3, up4 - are calculated based on the previous and current minimum, decreased by pips, and increased by monATR or monATR2.
Lower Levels:

dn1, dn2, dn3, dn4 - are calculated based on the previous and current maximum, increased by pips, and decreased by monATR or monATR2.
Channel Construction:

The upper channel is built using the lines up3 and up4, represented by blue color.
The lower channel is built using the lines dn3 and dn4, represented by red color.
Display on the Chart:
The plot function is used to display linear plots with different colors and styles.
Upper lines are blue (#2196f3).
Lower lines are red (#ff5252).
The plots are drawn with a line thickness of 2 pixels for better visibility.
How It Works:
The channel is constructed around current and previous minimums and maximums, taking into account market volatility measured by ATR.
Four lines (upper and lower) allow visualizing potential support and resistance zones based on current volatility.
Image
I only correct logic calculation, not all code...maybe the issue is in other lines, you write that this code is write by AI....