[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 1041
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
Can you tell me what neural networks are in five words, vector data ... I read the rest and see the figure ;)))
You can't do it in two words. Try to start with the simplest one - perceptron. Read it somewhere here or on Reshetov's site.
Then it will be easier to move on to neural networks.
Writes: OrderModify error 1. But not all the time :(. Help!
If unchanged values are passed as function parameters, an error1 (ERR_NO_RESULT) will be generated.
The modification was not necessary.
Before modification check the difference between modifiable parameters, then there will be no error.
If unchanged values are passed as parameters to the function, there will be an error1.
If unchanged values are passed as function parameters, an error1 (ERR_NO_RESULT) will be generated.
The modification was not necessary.
Before modifying, check the difference between the parameters to be modified, then no error will occur.
any :D
Get the parameters of the order using an appropriate function and check if they correspond to those you want to set, if they do - get out :)
any :D
Get the parameters of the order using an appropriate function and check if they correspond to those you want to set, if they do - get out :)
Dear guys, can you explain why in this code (closing orders) the order is first selected by SELECT_BY_POS,
and then the same order is SELECT_BY_TICKET ? how does it work?
Print (Symbol(), " START CLOSING BUY LINE");
string symbol = Symbol();int cnt;
for(cnt = OrdersTotal(); cnt >= 0; cnt--){
OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);
if(OrderSymbol() == symbol && OrderMagicNumber()==Magicbuy) {
ticketbuy=OrderTicket();OrderSelect(ticketbuy, SELECT_BY_TICKET, MODE_TRADES);lotsbuy2=OrderLots() ;
double bid = MarketInfo(symbol,MODE_BID);
RefreshRates();
OrderClose(ticketbuy,lotsbuy2,bid,3,Magenta);
}