Do you mean the tester doesn't work at all, or the other pairs make losses?
Maybe its a history data problem?
Is it mt4 or mt5?
Posts made by roar
-
RE: Strategy Tester Problemsposted in Questions & Answers
-
RE: Close each trade if certain conditions?posted in Questions & Answers
Maybe something like this works... Try measuring the profit and loss with the Check distance block. So you will need two blocks of those, both in a loop that goes through all trades.

-
RE: How Do I Saveposted in Questions & Answers
@xolasoqashe said in How Do I Save:
.."
It downloads the file to your default download folder - check your browser settings
-
RE: Add volumeposted in Questions & Answers
You will want to use group numbers (#) for differentiating between the "parent" and "secondary" orders. Then use logic like "parent trade is running -> keep x amount of secondary orders in place -> if there is more than x amount orders, close the oldest and repeat loop (see picture)"
hope this helps some

-
RE: The strategy from scratch questions and problemsposted in Questions & Answers
Run Blocks works similarly than those drag-and-drop connections; if you have vertically connected blocks, say id1 -> id2 -> id3, just type id1 in the Run Blocks. The flow will then continue to the normally connected blocks below.
-
RE: Momentum indicator is above or below a mediaposted in Questions & Answers
I'm afraid there is no elegant solution to finding median.
For measuring volatility, my way is to compare a fast volatility to slow volatility, for example a formula block with 21-period standard deviation divided by 144-period average true range. This gives a ratio of around 0.5 - 3 and that is enough momentum info for my projects.
-
RE: Buy or Sell from certain distance from SMAposted in Questions & Answers
Using the envelopes indicator would be the straigth-forward solution.
Alternatively, use formula MA + 10(pips) and a condition after formula -
RE: Cryptocurrencies are exploding these daysposted in General Discussions
@fxdreema said in Cryptocurrencies are exploding these days:
When I wrote this topic I think the Bitcoin price was somewhere between 2000 and 3000 dollars. Over 15000 now and I still believe that cryptocurrencies will grow. Guys, forget about this Forex stuff and buy and hold some cryptos, I think you will be much better in the future

Haha, you made a pretty good call

Personally I am quite sceptic on the bitcoin trend - how can you determine the correct price, how long can it really keep rising, it must be a bubble, IT MUST BE.... aaaand I am probably wrong. -
RE: Getting startedposted in Questions & Answers
For looking inside live formula results, try the comment-block and visual tester

-
RE: Trend Drawdown in a given periodposted in Questions & Answers
You need to give more information, what it is exactly you are trying to do.
Is the blue line = close of candle id 200 to lowest/highest point of last 200?
Why are you comparing id 1 and id 200? Wouldn't using MA rising/falling a more confident way?

-
RE: Blue Pin...!posted in Questions & Answers
It prevents the window from closing - normally it closes when you click update
-
RE: adding/modifying information on "About" tab on the EA.posted in Questions & Answers
Open the generated .mq4 file in the metaeditor - the about-stuff is right in the beginning, you will figure it out

-
RE: Restart eaposted in Questions & Answers
@timmyhanke
Nice work
I haven't done anything similar to this, and can't spot any obvious mistakes in the logic.. -
RE: Directoryposted in Questions & Answers
Your paths look correct, just check there is no typos.
For example, are you sure your mt4 terminal is not C:\Program Files\MetaTrader 4\ -
RE: Save EA modification under a new nameposted in Questions & Answers
You can import .mq4 files to your fxdreema.
So export your EA1 to EA1.mq4
then import it into fxdreema, change project name to EA2.Now you should have both EA1 and EA2 in your "load-menu"
-
RE: Repeat blocks until one gives trueposted in Questions & Answers
You see, the once per tick creates a loop? It never passes before the first conditions

