- Search Metals Mine
- 2,180 Results (17 Threads, 2,163 Replies)
-
MathTrader7 replied Mar 4, 2022You have to wait for N seconds for the first candle to form, another N seconds for the second candle and so on. There is no way to have history without having access to the history data of the real ticks (which is the case with MT4).
N-Second Chart Creator EA
-
MathTrader7 replied Feb 22, 2022You can reach me by PM, or writing a shout in my profile. Such irrelevant post is not allowed in this thread. I had to dislike it. If you write any irrelevant post here, then I have to ignore you. There is nothing personal, please read the thread's ...
Renko Trading Discussion
-
MathTrader7 replied Feb 6, 2022In Post 1, you can find some info about backtesting Renko EAs. For example, see this thread url
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Jan 27, 2022You are on the right track! Congratulations! By looking at the equity curve, I can say that if you perform a Monte Carlo sampling, due to long term drawdowns (specially in the beginning of the curve), it will show you a considerable probability of ...
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Jan 1, 2022Hi, Diamonds appear two candles after what you see on the screenshot. The fractals indicator is not working the way you think. Happy New Year! Matt
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Dec 23, 2021Yes, it is computationally expensive but tractable with nowadays computers. If that is the problem, you can always use Genetic Algorithm and just examine a set of parameters that are promising. Note that the backtest algorithm in its basic form can ...
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Dec 22, 2021I answer your question with an example of trading that I started (with real money) about one year ago. After reading resources available about stock market pair trading, and understanding the math behind it, I started pair trading which involves two ...
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Dec 21, 2021I am too busy and don't have time to explain it here, but the following link is a good start to be familiar with MC application in backtesting. url
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Dec 21, 2021Use Monte Carlo simulation to select the most reliable backtest parameters.
Finding The Most Robust Parameters Using Optimization
-
MathTrader7 replied Dec 8, 2021Sorry, It is a free but closed source project.
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Dec 7, 2021Some old methods of backtesting Renko EAs might not work in the latest build of MT4.
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Nov 8, 2021Hi, I have a draft version but it is not in a shape to be released. High CPU usage is the major problem. I don't have much time to debug it.
N-Second Chart Creator EA
-
MathTrader7 replied Nov 5, 2021This is an EA here. You need to read the posts in the following thread. I don't remember the name of indicators. url
Renko Trading Discussion
-
MathTrader7 replied Nov 5, 2021This is a very old EA and as far as I remember it needs some indicators that you need to download from the original thread.
Renko Trading Discussion
-
MathTrader7 replied Nov 1, 2021Version 1.70 released (I updated Post 1 where you can download it). In this version I fixed the bug that caused the time label of a Renko bar change twice.
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Oct 28, 2021The problem is in your trading EA code. Version 1.69 has solved the time label of the Renko bars. You can take a look at the modified code of a trading EA in Post 799.
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Oct 28, 2021The following modification shall make it work correctly. // Trade_Candle_Open.mq4 #property strict input double lot = 0.01; // lot input int slippage = 10; // max slippage datetime tlast; int OnInit() { tlast = 0; return INIT_SUCCEEDED; } void ...
Non-gap Renko Chart Creator EA
-
MathTrader7 replied Oct 28, 2021The code you have attached doesn't open any order! The code is for managing manually opened positions.
Non-gap Renko Chart Creator EA