How to check the Swap rate for any currency pair.. ?
Created at 30 Jun 2018, 11:50
How to check the Swap rate for any currency pair.. ?
30 Jun 2018, 11:50
Dear Anyone,
There is a way in mql4 for MT4 platform for check the swap rates before open any trade position like:
- MarketInfo("EURUSD", MODE_SWAPSHORT);
- MarketInfo("EURUSD", MODE_SWAPLONG);
And in mql5 for MT5 like:
- SymbolInfoDouble("EURUSD", SYMBOL_SWAP_LONG) ;
- SymbolInfoDouble("EURUSD", SYMBOL_SWAP_SHORT);
So, is there also a way in cAlgo for check/get the swap rates for any currency pairs BEFORE open any trade
position ?
Thank you.
PanagiotisCharalampous
03 Jul 2018, 10:16
Hi budiali,
Currently this information is not availabe via the cAlgo API.
Best Regards,
Panagiotis
@PanagiotisCharalampous