nadiawicket
nadiawicket
nadiawicket
Added topic HELP!! Trailing Stop issues because of lag
if ( OrderMagicNumber ()== 00000 && OrderSymbol ()== Symbol () && OrderProfit ()>(- OrderCommission ()+- OrderSwap ())) OrderModify ( OrderTicket (), 0 , Ask , 0 , 0 ); The above code sometimes nails it, sometimes doesn't. Maybe
nadiawicket
Added topic Help! Auto reconnect fails when different network device is used
MT4 works at reconnecting when connection fails, only if its utilizing *the same device* to reconnect. Sometimes fails to reconnect automatically even if its the same device. We still have to manually reconnect, which is not viable for me. I live in
nadiawicket
Added topic Why does this code not produce sells?
Really need some help here.Ive attached the EA as well as a Screenshot to make it easier to test out if you dont want to copy paste. Objective: I only need this to produce one buy after there is already one sell already and/or one sell after there is
nadiawicket
Added topic How to place order at distance from moving average?
Good day . ‌I am trying to place an order at 10 points below from the LWMA using the following line of code: if (( Ask <=( iMA ( Symbol (), 1 , 2 , 0 , MODE_LWMA , 0 , 0 )) - 10 * Point ) ‌It does it right only sometimes. How do I get it to always
nadiawicket
Added topic Need help with moving average distance calculations looks liek a Bug
‌How do I code the movingaverage variable‌ so that it gives the exact correct data ? ‌In other words , I cant correctly retrieve the iMA data. double    iMA (    string       
nadiawicket
Added topic How to select last opened Deal Price or current just bought without modifiy order? OrderSend (Symbol(), OP_BUY, 1, Ask, NULL, NULL, OrderOpenPrice()+1*Point, NULL, NULL, NULL);
I need help with this line of coding:   OrderSend (Symbol(), OP_BUY, 1, Ask, NULL, NULL, OrderOpenPrice()+1*Point, NULL, NULL, NULL); Trying to place an order send to just place buys at latest bought price without having to modify order or any
nadiawicket
Registered at MQL5.community