Multi timeframe CCI

Created at 13 Feb 2025, 13:13
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!
AD

adab.omid

Joined 04.04.2024

Multi timeframe CCI
13 Feb 2025, 13:13


Dear support,

I used an instance of multi timeframe CCI in my cbot and it is working well on desktop version but it dosnt work on cloud. 

Code: CCICustomBars1 = MarketData.GetBars(CCITimeframe1, SymbolName);

            _commodityChannelIndex1 = Indicators.CommodityChannelIndex(CCICustomBars1.GetPrices(CCISource1), CCIPeriod1);

 

Error: Crashed in OnStart with MissingMethodException: Method not
found: 'cAlgo.API.Indicators.CommodityChannellndex
cAIgo.API.Internals.llndicatorsAccessor.CommodityChannellindex(cAlgo,
API.DataSeries, Int32)",

 

Let me know am i in wrong way or your cloud dosnt support MLT CCI?


@adab.omid
Replies

Edward357Johnson
14 Feb 2025, 10:45 ( Updated at: 18 Feb 2025, 03:43 )

Hello!

It sounds like you're encountering an issue with running a multi-timeframe Commodity Channel Index (CCI) on the cloud, which works fine on your desktop. The error Frontline IEP indicates a MissingMethodException, suggesting that the method CommodityChannelIndex is not found in the cloud environment.

This could be due to a version mismatch or unsupported feature in the cloud environment. I recommend reaching out to your cloud provider or the support team for your trading platform to confirm if multi-timeframe CCI is supported in the cloud. 


@Edward357Johnson