Replies

PanagiotisChar
06 Mar 2023, 08:55

Hi there,

If you don't know how to program this yourself, you can ask a professional to help you here.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
03 Mar 2023, 11:14

Hi there,

You need to initialize the _emaDiff indicator. Also _emaSignal is not necessary. The result is already contained in _emaDiff.Result.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
03 Mar 2023, 11:12

Hi JP,

Price feeds are provided by brokers, not by cTrader or TradingView. If the brokers you use are different, then this is expected. If it is the same broker, address it with them

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
03 Mar 2023, 09:05

Hi there,

Here is an example

using cAlgo.API;
using cAlgo.API.Indicators;

namespace cAlgo
{
    [Indicator(AccessRights = AccessRights.None)]
    public class NewIndicator7 : Indicator
    {
        [Output("Main")]
        public IndicatorDataSeries Result { get; set; }

        public IndicatorDataSeries Diff;

        private MovingAverage _emaFast;
        private MovingAverage _emaSlow;
        private MovingAverage _emaDiff;

        protected override void Initialize()
        {
            _emaFast = Indicators.MovingAverage(Bars.ClosePrices, 10, MovingAverageType.Exponential);
            _emaSlow = Indicators.MovingAverage(Bars.ClosePrices, 20, MovingAverageType.Exponential);
            Diff = CreateDataSeries();
            _emaDiff = Indicators.MovingAverage(Diff, 20, MovingAverageType.Exponential);
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            Diff[index] = _emaFast.Result[index] - _emaSlow.Result[index];
            Result[index] = _emaDiff.Result[index];
        }
    }
}

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
02 Mar 2023, 10:04

Hi there,

Here is an example

            var dailyBars = MarketData.GetBars(TimeFrame.Daily);
            var lowest = dailyBars.LowPrices.Minimum(21);

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
01 Mar 2023, 09:35

Hi there,

It seems you are not familiar with C# programming and OOP. You can't call anything from wherever you want. Positions is a property of Robot class and it can be accessed only as a property of a Robot object.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
01 Mar 2023, 09:32

Hi there,

It's better to assign the conversion to a professional. ChatGPT cannot do this.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
28 Feb 2023, 09:33 ( Updated at: 21 Dec 2023, 09:23 )

Hi there,

Looks good to me

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
28 Feb 2023, 09:30

Hi there,

Positions is a property of the Robot class. If you need to access this property in another class, you should pass the robot object to your class.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
28 Feb 2023, 09:26

Hi there,

You can find the IP and port of the currently used proxy in Settings > FIX API

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
28 Feb 2023, 09:24

Hi Jay,

In order to use a custom indicator in your cBot, you need to have the source code. As far as I know, ClickAlgo paid indicators do not contain source code.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
28 Feb 2023, 09:23

Hi Delmar,

My solution is to place grids within grids so that I can achieve the layout I want. I hope this helps.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
24 Feb 2023, 16:57 ( Updated at: 24 Feb 2023, 16:58 )

Hi there,

Check this indicator

 

 

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisChar

PanagiotisChar
23 Feb 2023, 15:50

Hi there,

I don't think this will be possible with the current limitations. You would need to become a client of Spotware to achieve that. If you are looking for professional consulting, send me an email at info@aieden.tech

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
23 Feb 2023, 13:51

Hi there,

There is no limit in the number of accounts you can access, there are only the limits mentioned in the link below

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar

PanagiotisChar
23 Feb 2023, 13:36

Hi there,

Understood. Probably they have been deleted during the installation process. If they are not there, then I don't think there is a way to recover them.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisChar