It has been announced since more than 2 weeks.
new problems with mql5 cloud
Conversion rate
Write on service desk,they will help you.
Experts: Murrey Based EA
Hi,
Thanks for this potential ea.
Do you have any backktesting results with modelling quality of 90% or 99%?
please share it.
thanks a lot
James
EA not trading - help
Excelent news. After the changes. My EA is showing signals and errors are appearing so now it is easy to solve. The error is code 4756 for both Buy and Sell Orders. I wonder how I could fix that.
Kind regards
Libraries: Trading signals module based on Heiken_Ashi_Smoothed indicator
Hello,
I have downloaded the library from the MetaEditor.
But when I am using the EA generator from MQL5 Wizard, I don't see the Heiken-Ashi signal on the signals list.
Should I do an extra step for that to happen?
Thanks!
Hi there. May I request all negative numbers be in red and or in paralysis
Hi there. May I request all negative numbers be in red and or in paralysis.
Especially in Profit column to be more legible. Thanks.
Experts: VSA Syndicate Trader v1.04
Market Condition Evaluation based on standard indicators in Metatrader 5
Forum on trading, automated trading systems and testing trading strategies
Market Condition Evaluation based on standard indicators in Metatrader 5
newdigital, 2013.09.01 21:06
This my post? red dotted lines are for possible sell stop trade, blue dotted lines are are possible buy stop ...
=============
Anyway - I just copied some latest summary from this thread :
=============
Market Condition Evaluation
story/thread was started from here/different thread
================================
Market condition
- the theory with examples (primary trend, secondary trend) - read staring from this post till this one
- Summary about market condition theory is on this post
- Practical examples about every market condition case by indicators: starting from this page till this one
- trendstrength_v2 indicator is here,
- AbsoluteStrength indicator new version is here
- AbsoluteStrength indicator old version is on this post
- AbsoluteStrengthMarket indicator is here to download.
- good feature in Metatrader 5: moving stop loss/take profit by mouse on the chart (video about howto)
- Market condition setup (indicators and template) is here
================================
3 Stoch MaFibo trading system for M5 and M1 timeframe
- trading examples
- template to download
- explanation how to trade and more explanation here
- how to install
- 2stochm_v4 EA is on this post.
================================
PriceChannel ColorPar Ichi system.
================================
MaksiGen trading system
- indicator to download
- some explanation about the system in general how to use
- Trading examples with MT5 statement, more trading is here.
- Paramon trading system iis on this post; How to trade the system - manual trading with live examples - read this page.
================================
Merrill's patterns are on this page.
================================
Divergence - how to use, explanation and where to read about.
================================
Scalp_net trading system
- template/indicators and how to use are on this comment.
- scalp_net_v132_tf EA is on this post with optimization results/settings for EURUSD M5 timeframe
- possible settings #1 for this EA for EURUSD M5 timeframe with backtesting results is on this post.
================================
MTF systems
more to follow ...
================================
MA Channel Stochastic system is here.
================================
Ichimoku
- The theory of the signals
- Ichimoku alert indicator with arrows
- Ichimoku alert indicator improved : warning alert mode was fixed and autosettings feature was added
How to Start with Metatrader 5
[Q] Minimal SL ?
StopsLevel()
EURUSD GOING UP OR DOWN?
CAppDialog Problems
Hi Dan
What's the problem you're having exactly?
Well, I just seem to be fighting the control all the time. Here is a brief list:
- I have multiple indicators using different app dialog with each using the Save and Load for their own ini file, but when loading (eg from switching time frame) they are loaded on top of one another. Its like they are reading the same ini file, or at least getting the same data somehow.
- Sometimes the separate indicator panels re size, copying the dimensions of a previous one, thus making it not fit the controls in them
- The actual Dialogs and its controls have a strange "z" order, making very odd interactions with other CAppDialogs
- Seem to close, even though the close button is not clicked.
- Had to add extra code to CAppDialog when applying templates otherwise a second "false" panel will draw on the screen that is non usable
As I said, strange behaviors and it could be my coding, but maybe the panel itself. I am wondering whether to ditch it and try writing my own interface, but that sounds like a task in itself.
Regards
Dan.
Traders Joking

MT5 Tickdata vs MT4 Tickdata Testing
I have never noticed this myself.
A lot depends on expert advisor, because some of them do a lot of calculations therefore testing takes more time. If you have your own advisor that was edited for both mt4 and mt5, and has same functionality in both terminals - then you can compare these versions to see speed difference.
Also, MT4 terminal has special tab that displays all trades during testing, it probably takes some time for MT4 terminal to process and display this trade data.
Also, MT5 can have something like a better signal result caching, which can speedup everything too. But this is only guess.
EURUSD Move
To make it shorter: The price will go up or down?
I need that information asap.
Hahaha! Forums are great for emotional traders... so many opinions, so many possibilities! Best of luck whichever way you trade, but you should really do your own analysis instead of relying on someone else's - best to "know your stuff" rather than hoping someone else does. NewDigital obviously seems to know what he is doing, but no one is perfect so even a professional could have flawed analysis. Or he could be deliberately misleading you. I do not suggest he is doing either, but you need to keep this in mind when taking others' advice.
Thank you to NewDigital for your in-depth answers. Very informative and detailed analyses!
Which currency price/earnings to growth ratio will extremely fall or raise next?
- Chinese yuan
- Danish krone
- Hong Kong dollar
- Danish krone
- Other
- None
MQL Question
I tired of test and back test EA , I think I have to learn mql language , what is your opinion , do you have Idea , and do you know good tutorial ?, If you have Information and that's Possible , help me please .
Is there a way to limit the mt5's position opening ability to no more than a certain amount of units at any given time?
Yes it's clear now! Thanks for explaining! Just one question: If I click buy/sell on EA's interface will it be as fast as the platform's interface? Will it not cause a certain delay?
Remove of EA
another thing i found out
this is my input for ema
input int SL_EMA=150;
double EMA150[]; // Stundenbasis int MAHandle150=0;// Stundenbasis //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ double Ask = SymbolInfoDouble(_Symbol,SYMBOL_ASK); double Bid = SymbolInfoDouble(_Symbol,SYMBOL_BID); //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int OnInit() { // initialisieren der EMA's MAHandle20= iMA(_Symbol,PERIOD_D1,Trail_EMA,0,MODE_EMA,PRICE_CLOSE); MAHandle50= iMA(_Symbol,PERIOD_D1,Main_EMA,0,MODE_EMA,PRICE_OPEN); MAHandle150=iMA(_Symbol,PERIOD_H1,SL_EMA,0,MODE_EMA,PRICE_CLOSE); // in welcher Häufigkeit (Sekunden) das Event vorkommen soll EventSetTimer(60); return(0); }
the interresting thing is, that the , i calculate the EMA and this will be working fine unter "OnTimer"
but if i want to use this code here
void OnTick() { if(PositionSelect(_Symbol)) { Print(EMA20[0]); Print(EMA150[0]); } }
i get following message:
2015.02.04 21:06:23.404 London_Squeeze_Trendfilter_V1.0 (EURUSD,M1) array out of range in 'London_Squeeze_Trendfilter_V1.0.mq5' (239,18)
what does mean the error is exactly here where you see the pips
Print(EMA20|[0]);
can someone help mee????????
amando
Creation of OBTR or (an indicator that works with volume and tendency) MQL5/ Candle in EA MQL5
Good afternoon,
I intend to create the OBTR indicator for MQL5, as my trade system (non EA) is based on that. I finished my EA (finally fully operational now), and it makes some good trades (excellent actually hehe) and some others which are rather disappointing, due to the lack of trend and volume oscillator indicator. The OBTR would be the solution to fix all this. Anyway I wonder suggestions to be able to make a reliable OBTR that can finally leave my happy EA, or at least some indicator that works with trend and volume, following OBTR patterns.
In addition I also wanted to add Candle Indicators to my EA, and do not know how. I would like my robot "to check" reversal candles, and examine before the moving average difference to the candle to be able to improve my trades. I found no indicator or anything related to Candles.
I am grateful to help I received this forum in particular to AngelVoyageur, and Dr.Trader. Without help my EA would still fail to work.
Kind Regards,
Pedro Camargo