How to check the Swap rate for any currency pair.. ?

Created at 30 Jun 2018, 11:50
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
BU

budiali

Joined 06.06.2013

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.


@budiali
Replies

PanagiotisCharalampous
03 Jul 2018, 10:16

Hi budiali,

Currently this information is not availabe via the cAlgo API. 

Best Regards,

Panagiotis


@PanagiotisCharalampous