Find Swap Rates Before Order Opened
-
Hi, how can I check the swap rates for a currency pair and use this as part of the criteria for opening or not opening a trade (e.g. if SELL swap positive, only open SELL position based on further conditions)?
-
Maybe asking your broker?
-
use custom mql code:
vSwapSell=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPSHORT),3);
vSwapBuy=NormalizeDouble(MarketInfo(Symbol(),MODE_SWAPLONG),3);
then out put to where you want them to