Custom data not being picked up #599
-
|
Hi, I'm trying to use my own data for Backtesting. So I've set the following: However, if I check the following variables immediately after the last line has executed, only one of them, csvFxPricesData, is going to my private folder the other 2 are going to the default folders: I assume it is because what is or isn't in the private folders. I'm only working with 5 instruments, and I've populated the 3 relevant folders in my private folder with adjusted prices, multiple prices and spot fx. How can I find out why my private folders for adjusted and multiple prices are being rejected/ignored? Is there additional error reporting I can switch on or is there particular code logic I can review / step through to understand where things are failing? Debug output: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This is me with a shot in the dark, having used the mentioned classes little to nothing, but looks to me like you are declaring three different instances using the same variable name - in other words you are writing over the first two data declarations, leaving the last one in memory. Shouldn't the declaration be; or something to that effect? |
Beta Was this translation helpful? Give feedback.
This is me with a shot in the dark, having used the mentioned classes little to nothing, but looks to me like you are declaring three different instances using the same variable name - in other words you are writing over the first two data declarations, leaving the last one in memory.
Shouldn't the declaration be;