Unexpected NaN values in double array during backtesting

Created at 09 Mar 2025, 02:22
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!
SI

sigure

Joined 09.03.2025

Unexpected NaN values in double array during backtesting
09 Mar 2025, 02:22


I am encountering a perplexing issue where NaN (Not-a-Number) values appear in a double[] array during backtesting in cTrader. This issue seems to be index-specific and I am seeking insights or suggestions to resolve it.

To elaborate, I am assigning numerical data to elements of a double[] array within my cBot strategy. However, I consistently observe that values assigned to certain array indices become NaN during backtesting.

Interestingly, when I use the same data and assign it to a different array index, the value is correctly stored and does not become NaN. Conversely, if I take data that works fine at a non-problematic index and assign it to one of the problematic indices, it does become NaN.

This issue is not isolated to complex code. I have reproduced the NaN behavior using a very simple test cBot with minimal code, which rules out errors in my strategy logic.

Furthermore, the NaN occurrence is not limited to a specific index range. I have observed it at various indices, and there does not appear to be any discernible pattern to the affected indices.

The problem persists across different backtests and even when testing with different market data. This suggests the issue is not data-dependent or market-specific.

Has anyone else experienced a similar index-specific NaN issue when working with arrays in cTrader backtesting? Any advice on potential causes or troubleshooting steps would be greatly appreciated.

Thank you for your time and assistance.

Apologies if the phrasing sounds unnatural, as this question has been translated from Japanese.

Sincerely,


 


@sigure
Replies

claudiorubbiani
10 Mar 2025, 11:39

Hi @sigure,

in my experience the NaN is returned when it's not possible to calculate a certain indicator and there are 2 reasons behind:

  1. Data does not exist, for example you ask cTrader to calculate a MovingAverage over 200 period of a Monthly timeframe for BitCoin, and you get the NaN response (which makes sense)
  2. Historical Data has not been loaded, there is in cTrader  a function named Bars.LoadMoreHistory() that is supposed to help but … in my experience that never worked. What really worked for me is change the broker and access to a serverwhere your data is present. For example when I get the NaN response, i switch from ICMartes account to cTrader Demo account and everything works 

 

I hope that helps.

Ciao, Claudio

 


@claudiorubbiani