Page 1966 of 2170

Re: MT4 Indicator requests and ideas

Posted: Sun Dec 03, 2023 7:50 am
by Abdi
birrow wrote: Sun Dec 03, 2023 6:46 am thanks for your replay , can you share zip file please
Writing from a phone. But just go to forexfactory and search for zee support and resistance. You'll find the zip in the first results ...

Re: MT4 Indicator requests and ideas

Posted: Sun Dec 03, 2023 8:44 pm
by Jarqo
Hi ya'll,

would it be possible for any of the coders to implement the MTF function in this indicator?
Thanks in advance to anyone looking into it.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 12:23 am
by Pucmola
Enjoy the grid ... it served me excellently on ea. it can be useful for someone (you need to set it according to your trading style)

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 9:45 am
by Pucmola
I received a question by email: when are pips enough, i.e. exit... I used rsi for that... it knows exactly when enough is enough... so I'll attach it if anyone wants :)

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 10:13 am
by Narutopips
Pucmola wrote: Mon Dec 04, 2023 9:45 am I received a question by email: when are pips enough, i.e. exit... I used rsi for that... it knows exactly when enough is enough... so I'll attach it if anyone wants :)
Image
Thanks a lot, man, you actually saved a soul tonight. thanks so much for the indicators, i sure definitely it will improve my trading.

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 11:34 am
by Pucmola
Narutopips wrote: Mon Dec 04, 2023 10:13 am Thanks a lot, man, you actually saved a soul tonight. thanks so much for the indicators, i sure definitely it will improve my trading.
I'm glad... But... you can have the best indicators in the world and you won't earn anything if you don't know how to use them, and you don't know what they do... every single indicator is profitable if you know how to use it... I use in ea indicators that are even repaint and it doesn't matter because they have to fulfill at least 8 other conditions for the trade to start. that was an example... sometimes even 20. for example, a white and blue dot on the graph... the white dot is the point where the market always returns and the blue is the start of a rally. if I don't write it, you think that one is a buy, the other is a sell, and you no longer have a profit...you still need a direction indicator, accelerator, volume, etc. so I'm not saving anyone, everyone is going for themselves... learn to use indicators and don't trade immediately and don't let anything surprise you with small lots. euro to euro makes a wallet and not fear that the market is going against us... I meant it all in a good way :)
enjoy and good luck

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 11:58 am
by smartvin
Combine the indicator to create alert

Dear coder could you please combine the two indicators to create signal alert with Plot arrow and Push /pop up alert. The rules are below. Indicators and template attached


Sell alert Rules
1. Trend wave indicator sell confirmation
2.HAOS histogram must above Zero line
3. Line cross the HAOS histogram

Vise versa buy alert

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 12:00 pm
by mrtools
GoldenBrett90 wrote: Sat Dec 02, 2023 5:05 am Here's an idea...

This is an oldie-but-goodie...
THV Trix.
(Yes, I know it's originally from Forex Factory/Turhovich/CobraForex, those guys are retired.)

It's Tim Tillson's T3 put into a double-MA momentum oscillator, which is "Trix".

Now, has anyone here ever coded a Forex Station version of Trix, AND with Averages instead of just T3?

An AllAverages Trix would be a weapon.
Image
Check here

Re: MT4 Indicator requests and ideas

Posted: Mon Dec 04, 2023 9:31 pm
by smartvin
This works in 15min TF. Currently, I am manually trading in the test system.
smartvin wrote: Mon Dec 04, 2023 11:58 am Combine the indicator to create alert

Dear coder could you please combine the two indicators to create signal alert with Plot arrow and Push /pop up alert. The rules are below. Indicators and template attached


Sell alert Rules
1. Trend wave indicator sell confirmation
2.HAOS histogram must above Zero line
3. Line cross the HAOS histogram

Vise versa buy alert
Image

Re: MT4 Indicator requests and ideas

Posted: Tue Dec 05, 2023 9:02 am
by dmnik
;)
Hello everyone! Dear programmers, I need your help! I need to fix the indicator; it is not working correctly. I tried to create it along with the GPT chat from the Pine script that I wrote myself. So, the Pine script turned out to be working, but for MT4, it does not work correctly. Please help me fix it. Thank you for your attention! Here is the description of the script and the script files.

This Pine Script indicator constructs upper and lower level lines based on the calculations of the Average True Range (ATR) and user-defined parameters. Let's break down the logic in detail:

Title and Settings:

//@version=5 - indicates the Pine Script version.
indicator(title="<<ATP Worm>>", overlay=true) - sets the indicator title and specifies that it will be displayed on top of the main chart.
Input Parameters:

pips - the number of pips used for calculations.
atrLength - the period for calculating the Average True Range (ATR).
multiple - the multiplier used for calculating monATR2.
Calculation of ATR:

monATR = ta.atr(atrLength) - calculates the ATR using the specified period.
monATR2 = ta.atr(atrLength) * multiple - calculates monATR2 by multiplying the ATR by the multiplier.
Calculation of Levels:

For upper levels (up1, up2, up3, up4), the current and previous low prices are used, along with the values of pips and monATR or monATR2.
For lower levels (dn1, dn2, dn3, dn4), the current and previous high prices are used, along with the values of pips and monATR or monATR2.
Displaying Levels:

The plot function is used to draw lines for upper (up3, up4) and lower (dn3, dn4) levels with specified colors and styles.
In summary, the indicator plots four support and resistance levels on the chart based on ATR and user-defined parameters pips, atrLength, and multiple. Line colors and other styles can be configured according to user preferences.