Quote:
|
Originally Posted by gigiyoffee
hi,
does anyone knows, in an expert advisor, to program the "OrderSend()" function to open a trade on a symbol different from the one in which the ea is loaded?
thanks in advance.
|
OrderSend(NULL, 0.... )
"NULL" specifies the pair for the order. Null means the current pair. You can put any string (that corresponds to a pair, such as GBPUSD) in there.