
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
And immediately a test:
Ivan 1.004 USDJPY, M15, period 2016.01.01 to 2017.02.13
I'll make it like this for now:Ivan version "1.003":
The work is boiling - good!
However, I can't view the work yet - I don't have a forex account - only from the exchange, and the EA does not work there.
The work is boiling - good!
However, I can't see the work yet - I don't have a forex account - only from the exchange, and the advisor doesn't work there.
And I have the opposite: no connection to the exchange at the moment. And it will be like in that song:
You're a sailor, I'm a sailor.
You're a fisherwoman, I'm a fisherman.
You're on land, I'm at sea.
We'll never meet.
Added:
Trading on the exchange is netting and my advisor is only for hedging (as reported by the error printout when trying to connect to an exchange account:
). So the exchange is flying by with a whistle of plywood on Paris.
I have the opposite: there is no connection in the exchange right now. And it will be like in that song:
You're a sailor, I'm a sailor.
You're a fisherman I'm a fisherman
You're on land I'm at sea
We'll never meet.
Added:
Trading on the exchange is netting and my advisor is only for hedging (as reported by the error printout when trying to connect to an exchange account:
). So the exchange flies by with a whistle of plywood on Paris.
Yes, I understand, I just have Forex under 4 - maybe later I will open on demo - I will leave ideas if it will be interesting.
Teach me someone with a pro how to use the mt5 tester, I can't take much time in voice mode.
No, I don't think that's a good approach: there are a lot of people, everyone likes different pairs and different timeframes. I'd rather prescribe it directly in the input parameters:
Ivan version "1.004":
The work is boiling - good!
However, I can't look at the work yet - I don't have a Forex account - only from the stock exchange, and the advisor doesn't work there.
Ivan version "1.005":
{
if(m_position.PriceOpen()<price)
price=m_position.PriceOpen();
}
}
if(price==DBL_MIN || price==DBL_MAX)
price=0;
return(price);
}
this has now been fixed (yes, yes, yes - the error was in the condition sign - previously it was a "<" sign:
}
//--- the position of BUY can't be open below the lowest
double price_open_low=FindPosition(POSITION_TYPE_BUY,MODE_LOW);
if(price_open_low!=0)
if(price_open_low> m_symbol.Ask())
return;
sl=m_symbol.NormalizePrice(sl);
double tp=0.0;
Added:
Ivan version "1.006":
static datetime dtPrevBars=0;
//--- protection of profit
if(m_account.Equity()/m_account.Balance()>InpCoefProtectionProfit)
bCloseAll=true;
//--- trailing stop (at every tick)
if(!RefreshRates())
return;
TrailingStop();