Hi, usually I use _point for calculating my risk and lot sizing
here's an example:
this work fine when using only 1 currency pair.
But currently I am working to combine all my expert advisor which consist of multiple different currency pair
and this particular problem is stopping me from progress
Looking for advice from seasoned coder that perhaps experienced this problem also ;)
I don't understand what you trying to say but I get the gist of it.
here I used SymbolInfoDouble instead
Thanks anyway now I know these functions exist :)
//initialize Scaling Lot double balance = AccountInfoDouble(ACCOUNT_BALANCE); double point = SymbolInfoDouble("EURUSD",SYMBOL_POINT); double percentlot = balance*RiskPerDay/Stoploss*point; percentlot = NormalizeDouble(percentlot,2);
- M. Amir: this work fine when using only 1 currency pair.
Correct. The Predefined Variables are only for the current pair. Either, get the value(s) for the pair that you want.
- M. Amir: hich consist of multiple different currency pair
Or stop creating your own problems. I recommend: Do not trade multiple currencies in one EA.
-
You can't use any {MT4: predefined variables, MT5: predefined variables,}
-
A multi-asset EA runs in one thread so that one asset blocks all the others while each EA for a single asset runs in its own thread,
-
Must poll (not OnTick, unless you use specific indicators)
The Implementation of a Multi-currency Mode in MetaTrader 5 - MQL5 Articles (2011) -
and usually other problems, e.g. A problem with iBarShift - MQL4 programming forum - Page 2 (2016)
-
You must handle History {MT4:4066/4073 errors: Download history in MQL4 EA - MQL4 programming forum, MT5: Timeseries and Indicators Access / Data Access - Reference on algorithmic/automated trading language for MetaTrader 5.}
-
Code it to trade the chart pair only. Look at the others if you must. Don't assume that Time[i] == iTime(otherPair, TF, i) always use iBarShift.
Then put it on other charts to trade the other pairs. Done.
-
-
double percentlot = balance*RiskPerDay/Stoploss*_Point; //math for risk calculation
That is not a valid calculation.
Risk depends on your initial stop loss, lot size, and the value of the symbol. It does not depend on margin or leverage. No SL means you have infinite risk (on leveraged symbols). Never risk more than a small percentage of your trading funds, certainly less than 2% per trade, 6% total.
-
You place the stop where it needs to be — where the reason for the trade is no longer valid. E.g. trading a support bounce, the stop goes below the support. Then you compute your lot size.
-
AccountBalance * percent/100 = RISK = OrderLots * (|OrderOpenPrice - OrderStopLoss| * DeltaPerLot + CommissionPerLot) (Note OOP-OSL includes the spread, and DeltaPerLot is usually around $10/PIP, but it takes account of the exchange rates of the pair vs. your account currency.)
-
Do NOT use TickValue by itself - DeltaPerLot and verify that MODE_TICKVALUE is returning a value in your deposit currency, as promised by the documentation, or whether it is returning a value in the instrument's base currency.
MODE_TICKVALUE is not reliable on non-fx instruments with many brokers - MQL4 programming forum (2017)
Is there an universal solution for Tick value? - Currency Pairs - General - MQL5 programming forum (2018)
Lot value calculation off by a factor of 100 - MQL5 programming forum (2019) -
You must normalize lots properly and check against min and max.
-
You must also check Free Margin to avoid stop out
-
For MT5, see 'Money Fixed Risk' - MQL5 Code Base (2017)
Most pairs are worth about $10 per PIP. A $5 risk with a (very small) 5 PIP SL is $5/$10/5 or 0.1 Lots maximum.
-
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi, usually I use _point for calculating my risk and lot sizing
here's an example:
this work fine when using only 1 currency pair.
But currently I am working to combine all my expert advisor which consist of multiple different currency pair
and this particular problem is stopping me from progress
Looking for advice from seasoned coder that perhaps experienced this problem also ;)