You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello guys and gurus,
Have you code snippet, for a customizable money management which evolves with Balance, that i could incorporate into an ea ?
Thanks !
Hello guys and gurus,
Have you code snippet, for a customizable money management which evolves with Balance, that i could incorporate into an ea ?
Thanks !Joe
Why don't you use equity instead of balance?
Joe Why don't you use equity instead of balance?
Ah yes, sorry i was wrong !
Equity of course !
Ah yes, sorry i was wrong ! Equity of course !
Joe
Try out this one : lot_size.mq4
It is made as an indicator, so you can test it on chart to see what results are you going to get for various stop losses and risk %. It uses account free margin for calculation, but you can easily replace that with a function of your choice
Joe
Try out this one : lot_size.mq4
It is made as an indicator, so you can test it on chart to see what results are you going to get for various stop losses and risk %. It uses account free margin for calculation, but you can easily replace that with a function of your choiceThank you master
I work on an arbitrage ea.
Can you tell me, if the code bellow, will calculate the profit with the orders with the same MagicNumber and so will close only trades with same MagicNumber ?
Thank you !
{
int total = OrdersTotal();
double profits = 0.0;
for(int cnt = 0;cnt < total;cnt++)
{
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
if (OrderMagicNumber() == MagicNumber)
{
profits += OrderProfit();
}
}
return(profits);
}
bool profitTargetReached()
{
if (getTotalProfits() >= ((AccountBalance() * (PercentTakeProfit / 100.0))))
{
return(true);
}
return(false);Thank you master
I work on an arbitrage ea.
Can you tell me, if the code bellow, will calculate the profit with the orders with the same MagicNumber and so will close only trades with same MagicNumber ?
Thank you !
{
int total = OrdersTotal();
double profits = 0.0;
for(int cnt = 0;cnt < total;cnt++)
{
OrderSelect(cnt,SELECT_BY_POS,MODE_TRADES);
if (OrderMagicNumber() == MagicNumber)
{
profits += OrderProfit();
}
}
return(profits);
}
bool profitTargetReached()
{
if (getTotalProfits() >= ((AccountBalance() * (PercentTakeProfit / 100.0))))
{
return(true);
}
return(false);Joe,
Yes. What you can add (to be 100% accurate) is these two parts two that can influence the profit :
profits += (OrderProfit()+OrderSwap()+OrderCommission());
Joe,
Yes. What you can add (to be 100% accurate) is these two parts two that can influence the profit :
profits += (OrderProfit()+OrderSwap()+OrderCommission());OK !
Thank you for your time Mladen
I'm learning day after day.
I have a txt file with signals like:
May 01, 2014 at 07:53AM Gold OP_BUYSTOP 1292.4; Stop Loss 1265.2; Profit Target 1358.4
May 01, 2014 at 06:52AM Silver OP_SELL 1961.5; Stop Loss 2030.5; Profit Target 1855
So have any of you an idea how to test this signal? So I can see if this signals where good or bad...
Mr Mladen, i was wrong, what i need is to filter all trades, i have tested and works good with Stochastic (5,3,3), if higher than 80, and actual signal is for sell, then sell. If lower than 20, and actual signal is for buy, then buy. If not, don't open orders at this entry point.
Can you help me add this to my Ea please?
THank you
I downloaded this indy but for some reason its not loading or working
This one is, but not MTF
Thanks very much