Cloud issue: OnException Indicator <Indicators name> Type not found 
            
                 06 Feb 2025, 10:20
            
                    
When the cBot uses an indicator in Cloud the following Exception generated: Indicator <Indicator name> Type not found.
In Local Mode: no Exception.
This cBot uses a simple RSI and a custom indicator (gives allways Result=1) to demonstrate the problem for you.
Here you can see the result and the source.

using System;using cAlgo.API;using cAlgo.API.Collections;using cAlgo.API.Indicators;using cAlgo.API.Internals;namespace cAlgo.Robots{    [Robot(AccessRights = AccessRights.None, AddIndicators = true)]    public class CustomIndicator : Robot    {    private BarSample barSample;    private RelativeStrengthIndex rsi;//--------------------------------------------------protected override void OnStart()//--------------------------------------------------        {            rsi = Indicators.RelativeStrengthIndex(Bars.ClosePrices, 14);            barSample = Indicators.GetIndicator<BarSample>();            Print(rsi.Result.LastValue);            Print(barSample.Result.LastValue);        }//--------------------------------------------------------------------------protected override void OnException(Exception e) //--------------------------------------------------------------------------{    Print("OnException {0}" , e.Message);            }        //--------------------------------------------------    }}

beekaa
24 Feb 2025, 06:33 ( Updated at: 28 Feb 2025, 09:10 )
same observation here with custom indicators. Though they seem to work fine. It's just uncomfortable to see that error.
@beekaa