Conor Mcnamara / Profil
- Bilgiler
|
2 yıl
deneyim
|
7
ürünler
|
5
demo sürümleri
|
|
0
işler
|
0
sinyaller
|
0
aboneler
|
I started learning C programming in 2010. From there I picked up many languages.
I'm working on several indicator projects and EA concepts.
I'm working on several indicator projects and EA concepts.
Conor Mcnamara
using the two-stage entry concept on M5 chart with the trend following indicator looking at M15 (MTF). Drawdown is 1%
Yashar Seyyedin
2025.06.26
Great results.
Conor Mcnamara
because of the fact that indicator signals can sometimes be false, I developed a concept where the quality of the signal is first tested by the EA with 0.01 micro lot size before it executes a normal sized position (based on a risk % of the account). The PnL of the 0.01 lot size trade is examined... if the position was profitable, it makes another trade with bigger volume, if the position was unprofitable, it could mean that the indicator signal was false. This proved to be good in backtest. Instead of performing surgery on a weak trade, this basically pinpoints bad entries and cancels them
Conor Mcnamara
I automated Ron Blacks "Swing line" to do scalping on the H1 timeframe, and on backtest for 2024 it gave very impressive statistics when combined with ADX trend strength. But in 2025, the results are poor surprisingly. I wonder why that is
Rajesh Kumar Nait
2025.06.24
It should be like the hedge fund trading it in 2024 may have retired. The new player use new strategy
Conor Mcnamara
2025.06.24
maybe brokers are also using new tools which counter peoples trades, the landscape keeps changing
Conor Mcnamara
How do people think they published a safe and profitable EA when it doesn't use stop losses and allows equity drawdown to to continue over 50%? There isn't always a correction in markets so the money will be lost, and there will be a margin call. Shame on people purchasing pricey EAs from idiots
Conor Mcnamara
https://www.mql5.com/en/code/87 this is a clever and elegant indicator which measures volume pressure, it's a unique idea, it compares the live tick volume on each current bar to the average volume of the entire series and compares percentages of volume
Conor Mcnamara
I don't need to use AI for coding, but could you argue that if AI isn't helping you, then it is not a fault with AI but rather the fact that your prompt isn't reasonable enough? Maybe I'm way off I don't know
Tüm yorumları göster (8)
Rajesh Kumar Nait
2025.05.29
Yes prompt engineering is must to have also it's make errors even today but a programmer can understand and solve quickly but novice can't. So learning programming is also required to use AI in a better way
Rajesh Kumar Nait
2025.05.29
Thanks, Your code is good too. As a good programmer our goal should be to minimize coding, avoid redeclaring variables unless required and look for optimized way of coding. As a new programmer my first code which i wrote was 3500+ lines, after experience i rewrote that code in just 95 lines.
Conor Mcnamara
Trendline zigzag in qualitative channel kodunu yayınladı
Donchian Kanalı'nın dinamik trend çizgisine dayalı evrimi
Sosyal ağlarda paylaş · 2
198
962
Conor Mcnamara
this is now doing an impressive job of providing harmony and clarity in chaotic sideways market zones that make no sense with a moving average
Conor Mcnamara
2025.05.10
370 lines of code, the code kept changing and evolving...I am finished with it now. - A trend can be confirmed by bars or points
- Unlike a traditional zigzag, the price action does not confirm a trend, so there is no "depth" parameter, and the zigzag does not have to do confirmations - Confirmations are done with the trend in advance to "prepare" the zigzag on every subsequent bar so that the zigzag can start the new leg immediately It's a complete remodel of a zigzag indicator. Downloadable beta for free soon.
- Unlike a traditional zigzag, the price action does not confirm a trend, so there is no "depth" parameter, and the zigzag does not have to do confirmations - Confirmations are done with the trend in advance to "prepare" the zigzag on every subsequent bar so that the zigzag can start the new leg immediately It's a complete remodel of a zigzag indicator. Downloadable beta for free soon.
Conor Mcnamara
I'm building a brand new Zigzag which, once again, has instant trend detection and no delayed legs. No bar confirmations are needed in confirming the swings, and the legs always end at the current live bar.
How it works:
- It is guided by an MA trend, therefore there is no traditional ZigZag operation, as a moving average slope provides instant trend direction.
- The whipsaws and false signals you find in a moving average are completely ignored by two filters:
A traditional point deviation filter (comparing the previous swing to the current swing price).
An MA slope point confirmation filter, to bypass short, inconsequential moving average trends.
- A backstep is used so that the leg is constantly seeking the highest price (on a peak swing search) or lowest price (on a bottom swing search).
- If the moving average trend changes to mark a shift in the market, the leg does not need to alter the swing location at the point of the trend change if it already found a higher or lower price a few bars before.
- Keeping the backstep small keeps the swings in tune with the trend while never veering too far from the live moving average trend.
- A forward step is also implemented, but it's actually unnecessary as it would correct the Zigzag forward - and then it would be after the fact.
The zigzag I constructed here is very similar to the one I made for the Parabolic SAR indicator, but this one is more sophisticated, with both deviation and backstep logic.
It's definitely one of my more advanced codes. While it may not always capture the truest peaks and bottoms down to the end of candle wicks, it provides high-quality turning points, as can be seen in the screenshot.
How it works:
- It is guided by an MA trend, therefore there is no traditional ZigZag operation, as a moving average slope provides instant trend direction.
- The whipsaws and false signals you find in a moving average are completely ignored by two filters:
A traditional point deviation filter (comparing the previous swing to the current swing price).
An MA slope point confirmation filter, to bypass short, inconsequential moving average trends.
- A backstep is used so that the leg is constantly seeking the highest price (on a peak swing search) or lowest price (on a bottom swing search).
- If the moving average trend changes to mark a shift in the market, the leg does not need to alter the swing location at the point of the trend change if it already found a higher or lower price a few bars before.
- Keeping the backstep small keeps the swings in tune with the trend while never veering too far from the live moving average trend.
- A forward step is also implemented, but it's actually unnecessary as it would correct the Zigzag forward - and then it would be after the fact.
The zigzag I constructed here is very similar to the one I made for the Parabolic SAR indicator, but this one is more sophisticated, with both deviation and backstep logic.
It's definitely one of my more advanced codes. While it may not always capture the truest peaks and bottoms down to the end of candle wicks, it provides high-quality turning points, as can be seen in the screenshot.
Conor Mcnamara
last night I wanted to test mean reversion on the new VWAP indicator I published in the codebase. After noticing a support, I expected the market to move up and retreat to VWAP, so I set the TP to the VWAP price at that time. Both trades hit the TP at 4am GMT+3
Conor Mcnamara
Multi-Day Dynamic VWAP kodunu yayınladı
Birden fazla günün ortalaması alınabilen dinamik VWAP seviyesi
Sosyal ağlarda paylaş · 1
263
1493
Conor Mcnamara
In this new indicator I built, I combined 3 worlds. I combine trend, volume, and tick trend into one indicator. The moving average is based on volume, the volume bars are colored by the heiken ashi trend, and the color of histogram bars are replaced by the tick trend during high volume events - to capture the trend of high bearish volume, and high bullish volume during the time that normal trend indicators would be lagging.
Conor Mcnamara
Volume MA with candle color tracking kodunu yayınladı
Yükseliş/ayı mum rengini takip eden histogram çubukları ile saf tik hacminin hareketli ortalaması
Sosyal ağlarda paylaş · 2
257
811
Conor Mcnamara
I automated my static zigzag based on macross. I did put this indicator on the codebase as well
backtest timelapse on the real ticks model- EURUSD H1- 8 months- Fast period length 2- Slow period length 30
Stop orders used in this simulation with 80 point offset
A different strategy will also be tested with limit orders
backtest timelapse on the real ticks model- EURUSD H1- 8 months- Fast period length 2- Slow period length 30
Stop orders used in this simulation with 80 point offset
A different strategy will also be tested with limit orders
: