@beefie The first test was run with ForexTime, but should work with any broker with decent trading costs. I'd recommend ICmarkets
Posts made by roar
-
RE: Here, take this profitable eaposted in Tutorials by Users
-
RE: How can I set a stop loss based on ATR%posted in Questions & Answers
@jzfusion said in How can I set a stop loss based on ATR%:
@Voodoogodman
I don't think I understood what you meant. This is what I did:
And this is what I'm getting:

I'm missing something here!
Just change the mode. ATR is not a level, it's a price fraction

-
RE: built-in mt4 volume indicatorposted in Questions & Answers
@heiminsha2019
You can compare ID 0 to ID1, or ID1 to ID2.ID means the candle order number: 0 is the current candle, 1 is the previous candle, 2 is the 2nd newest candle and so on.

-
RE: built-in mt4 volume indicatorposted in Questions & Answers
@heiminsha2019
You don't need the "indicator", the volume can be found in the candle properties

-
RE: Please i need someone to test my EA for me. strategy tester is not working. I have download the data at the History center. and yet i get no results. the strategy tester only makes a sound.posted in Questions & Answers
@gee Check the journal tab in your strategy tester, it has a message for you
-
RE: auto lot sizing issueposted in Questions & Answers
@wolamen
Your lot size already grows linearly with balance, so couldn't you just use a fixed pip TP, like 10 pips?
Anyway, there is no fast way to use $ stops, you must calculate it with your lot size and TP pips. You should be able to do the math yourself, I'll help only with the "coding" part
-
RE: Incredibly slow backtest at every tick..posted in Questions & Answers
@fxmich78
Well, you can optimize your algorithm in a way that your CPU does minimal amount of useless work - if you have multiple conditions, put first the condition that passes the most rarely.Also, putting "once per bar" on top of your project naturally makes "every tick" faster, but it also limits the strategy.
If "open prices" and "every tick" differs a lot, you are probably making too small (short-time) trades. I would change my strategy - the backtest results are not very reliable in that case.
-
RE: Incredibly slow backtest at every tick..posted in Questions & Answers
@fxmich78 Every tick = more data, CPU needs to do more work, like a 100 times more work.
I usually test with open prices when developing, and only confirm the final test on every tick method.
-
RE: Calculation drawdown of balance and equity in mql5posted in Questions & Answers
@pontedruse
Ok, I don't know if there is some simple way to do this, but you could just keep track of your highest balance, and then compare that variable to your current balance -
RE: Pause a "pending order".posted in Questions & Answers
@kiwi789
The V1, V2 things are just a lazier way to use the variable in the quick window. These are the same thing:


Difference between white and orange: do you want to change the variable before the main block does its thing, or after that.
If you want to manually interact with the EA, I guess you should use some button objects and the "on Chart" section in the builder. Thats not my expertise, though
-
RE: Calculation drawdown of balance and equity in mql5posted in Questions & Answers
@pontedruse
How do you define the drawdown in this case? The % fall from record high balance?