Conor Mcnamara / Perfil
- Informações
|
2 anos
experiência
|
7
produtos
|
5
versão demo
|
|
0
trabalhos
|
0
sinais
|
0
assinantes
|
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
It's fascinating how different engineering backgrounds can shape someone's perspective on market behaviour.Wilder, the person who created the Parabolic sar - had a background in mechanical engineering and he viewed markets as a vehicle that drive with prices. John Ehlers, the person who created interesting smoother non lagging moving averages had a background in Electrical Engineering, and he viewed market prices as electrical signals.
Rajesh Kumar Nait
2025.04.01
I view market as proton neutron electron with electromagnetic concept.
Conor Mcnamara
2025.04.01
haha very nice
Conor Mcnamara
Publicado o código PSAR Zigzag (Non lagging)
Um ziguezague baseado na mudança de tendência do sar parabólico
Compartilhar nas redes sociais · 2
507
1368
Conor Mcnamara
A zigzag sharper than your ex’s mood swings.
A zigzag that made hedge funds jealous and your neighbor reconsider Forex.
A zigzag that would make your granny yell ‘BUY!’
It's a zigzag coming soon to a codebase near you...
A zigzag that made hedge funds jealous and your neighbor reconsider Forex.
A zigzag that would make your granny yell ‘BUY!’
It's a zigzag coming soon to a codebase near you...
Mostrar todos os comentários (5)
Conor Mcnamara
2025.04.07
had this idea in my mind for a while, but didn't really know how to code it to get it working right. I nearly went as far as thinking that I need to do a linear regression calculation to get a straight leg to the current bar, but it was much easier than that
Conor Mcnamara
last night I was building a zigzag which is non lagging and continuous to the current bar. It's not so obvious to make this work correctly. The zigzag drawing should maintain straight legs, but if you don't delete previous leg values when new highs and lows come, then it will turn into a line chart... I have it working now and I base the zigzag trend this time on psar which is non lagging
Conor Mcnamara
Publicado o código Ranging Market Detector
Um indicador que tenta destacar uma área de mercado variável
Compartilhar nas redes sociais · 1
541
1449
Conor Mcnamara
Publicado o código Trend Zigzag (on ma cross)
Um ziguezague estático que conecta as interseções de um cruzamento de média móvel
Compartilhar nas redes sociais · 1
539
1096
Conor Mcnamara
https://soundcloud.com/jonathanlesnick/oceanlab-vs-reflekt-sky-falls this is a wonderous mashup
Conor Mcnamara
I built a zigzag which connects the legs from two moving average crossover points. It's nothing to do with traditional zigzag and is fully about trend of the ma cross. It's more difficult than one may realize to make this good without noisy crossovers ruining the cycle. Moving averages are victim to market noise as you know, especially on short periods. The vertices also should also follow the cycle of LL - HL - LH - HH in sequence for each connecting leg to be in harmony. Invalid legs are inevitable in this one, and I colour them gray
Lorentzos Roussos
2025.03.13
what if you only accept crosses of "leaves" that have reached a minimum % of the atr in delta
Conor Mcnamara
2025.03.13
definitely possible..I mainly just wanted to make a new zigzag template which could be used for many things and not just a simple ma cross, all the cycles are organized by an enum, the code is nice and simple, maybe I should publish it
Conor Mcnamara
At some point you have a folder full of random indicators. I try to organize it like this in MetaEditor, and in turn, this also organizes the indicators in the software. It's a bit of work, but it's very annoying to have random indicators all within the examples folder
mapdonemap
2025.03.10
cool categorization. I tend to create 4 folders: mine (contains anything I add manually. also contains folders of course), stock (anything comes preinstalled with MT that is not going to be needed as a include), market (anything Ive downloaded from the official market OR from the internet that I dont have the source code for it), downloads (anything that I have source code for it AND I have got it from somewhere else AKA "not mine")
Conor Mcnamara
Making a channel between zigzag points is easy, just map the peak and bottom zigzag buffers to two individual "draw_section" drawing styles
Conor Mcnamara
It's disheartening to see an EA scalping configuration working well on the OHLC model, but going to zero on real ticks model. I tried to discover the exact reasons. Initially I thought that the live floating spread and slippage are an issue, but this is actually not the issue. Live bid and ask prices are much more unpredictable. A tight trailing stop is then much more rarer to be profitable because of that. A wide trailing stop can be even more damaging to the account if the EA makes a few bad trades. What is the solution? After countless testing, it seems that you will have to use a modest take profit, and that is the real solution if you want to keep the drawdown low. Then use a trailing stop that feels right for the timeframe that the EA trades on.
Rajesh Kumar Nait
2025.03.06
"A trading system that takes longer trades on H1 could be unaffected by the volatility of bid and ask prices, but a trading system on M1 or M5 will be extremely affected no matter what the system is. " Its because spread is most effective on LTF such as 1minute timeframe, I trade crypto so i am saved with spread manipulation as in crypto brokers spread are negligible. Crypto brokers do not earn from spread unlike forex brokers.
Conor Mcnamara
2025.03.06
I tested a few different strategies and found that sometimes you will get a quite similar result on tick models & OHLC model if the strategy uses a higher timeframe like H1 or H2, this is mostly because the trades are held for a good time. The rule will always be that sell position can only close at available ask price and buy position can only close at available bid price, so OHLC model simulates a non-volatile spread, making it very easy to make a strategy look like it can turn 1k into 400k in one month. Now we have majorly unrealistic backtest graphs all over the marketplace.
Rajesh Kumar Nait
2025.03.06
True bro. Spread and broker makes a major difference in profits. Ohlc is only a way to backtest your strategy. Ohlc data can be consistent and may work according to logic but spread and bid ask tick data can never be consistent and it's very rare that any logic for studying may apply on it
Conor Mcnamara
Conor Mcnamara
2025.03.05
one zigzag wants to talk about the peak, but the other one keeps talking about the bottom 😆
Conor Mcnamara
If anyone finds prev_calculated confusing (like I initially did) in MQL5, have a look at this blog post https://www.mql5.com/en/blogs/post/760917
Conor Mcnamara
Now have this idea rattling in my mind for a zigzag that forecasts the next leg. Also a grey color that the leg changes to when it's deemed that no valid forecast can be made (during a consolidation period for example)
Conor Mcnamara
2025.03.04
that's nice to know, I guess it could be built in many different ways, it could be more reactive to the price (maybe based on a quant indicator), or it could be more about predictive techniques
Conor Mcnamara
Publicado o código Autoscaling Zigzag
Um indicador de ziguezague que usa uma única entrada para ajustar o tamanho da etapa para detectar mudanças na direção da onda.
Compartilhar nas redes sociais · 2
580
1234
Conor Mcnamara
If gold starts rallying now, it could be a great buying opportunity. It looks like a support is found on the H1 timeframe, but doji candles suggests indecision, and the trend is uncertain.
Conor Mcnamara
If it's hard to see the market sentiment, it's good to use these bears and bulls power indicators and color the histograms this way
Conor Mcnamara
If you have a trading system, and you know that the entries corresponding with the system are good, then a tight stop loss or a tight trailing stop is *not* a good idea. If the entries are good, then you should have at least a wide stop loss. Predictable stop losses are being hunted by institutional traders and hedge funds to force retail traders out.
Yashar Seyyedin
2025.02.27
Yes tight stop loss is not something ever worked for me. But I would say we should not focus on stop hunting when it comes to designing a strategy. All you can do and will do is putting your SL where the backtests end up in consistent profitability.
Conor Mcnamara
2025.02.27
true, it depends on how precise the entries are, some strategies might use an entry based on tick trend and in that case a tight stop might be part of the system. Most entries based on normal signal indicators can get stopped out easily though
: