Re: MT4 Indicator requests and ideas

19655
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.
These users thanked the author Narutopips for the post:
Pucmola
A man's Past is his Pride, But my Pride is Shaping the Future.


Re: MT4 Indicator requests and ideas

19656
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
learn to use the indicator first, then trade...
Betyx

IndicatorRe: MT4 Indicator requests and ideas

19657
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
These users thanked the author smartvin for the post:
sal

Re: MT4 Indicator requests and ideas

19658
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
These users thanked the author mrtools for the post:
GoldenBrett90

Re: MT4 Indicator requests and ideas

19659
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

DownloadRe: MT4 Indicator requests and ideas

19660
;)
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.
Who knows others is wise
Who knows himself is enlightened