GetBars returns no result for pair GBPUSD

Created at 06 Jan 2023, 07:34
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!
L.

l.lafon34

Joined 06.01.2023

GetBars returns no result for pair GBPUSD
06 Jan 2023, 07:34


Hello,

I am trying to code a bot running on multiple symbols.

I then have a variable which contains all symbols as an array and I am looping through it to initialize my indicators in the OnStart method.

This works fine except for symbol GBPNZD for which MarketData.GetBars return an empty result in backtest:

TF1 = TimeFrame
for(int i = 0; i < symbols.Count(); i++)
            {
            
                barsTF1 = MarketData.GetBars(TF1, symbols[i]);
                Print(symbols[i]);
                Print(barsTF1.Count); // <= This returns 0 for GBPNZD but return results for EURUSD, GBPUSD etc...
            }

Issue is happening if I am running the backtest with chart symbol GBPUSD with timeframe H4.

Strange thing is that if I change chart symbol to GBPNZD then I don't have the issue anymore meaning that bars are retrieved for this symbol with method MarketData.GetBars.

Does someone know if I am missing something obvious or if this is a known bug?

Thanks in advance


@l.lafon34
Replies

Spotware
09 Jan 2023, 09:40

Dear trader,

Please share with us the complete cBot code and your broker so that we can reproduce this issue.

Best regards,

cTrader Team


@Spotware