griffcho16
griffcho16
Friends

Add friends via their profile or user search and you will be able to see if they are online

griffcho16
Added topic profit value is not right
if ( MathAbs (Ask - OrderOpenPrice()) >= 100 * Point ){          Alert (Ask, " " , Bid);         res = OrderClose(ticket, lots, Bid, 3 ); } if ( MathAbs (Bid -
griffcho16
Added topic Ordersend error 130
ticket = OrderSend ( Symbol (), OP_SELL, lots, Bid, 3 , Ask - 100 * Point , Ask + 100 * Point , NULL ); I have been using the above code to send order (USD/JP) when the RSI is above 70, but I always get error 130 . It seems like I might be violating
griffcho16
Added topic Pause after a trade
I am currently implementing an EA that pauses after it has closed a position, and the code is down below: if ( OrdersTotal () == 0 && TimeCurrent () >= OrderCloseTime() + 1200 ) {
griffcho16
Registered at MQL5.community