PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
16 Nov 2023, 07:49

Reply to: Is Algo Trading Legit?

Hi there,

Can brokers track/sort traders by the number of requests sent to the server(s)?

What kind of requests are you referring too? If you refer to order requests, then yes they are trackable.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
16 Nov 2023, 06:45

Reply to: The indicator is closed after you compile the code in visual studio

Hi there,

What do you mean that the indicator is closed? Can you share the indicator code and exact steps to reproduce this problem?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
16 Nov 2023, 06:44

Reply to: Licence error

Hi there,

You should talk to the cBot developer first.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
16 Nov 2023, 06:43

Reply to: Yes Or Not

Hi there,

You have been blocked because you spammed the group with your ad. We will lift the ban soon, but if repeated, the ban will be permanent.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
16 Nov 2023, 06:37

Reply to: cTrader Desktop issues today!!

Hi there,

Can you record a video demonstrating the behavior you are experiencing?

Best regards,

Panagiotis 


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 10:48

RE: Sample SMA

Hi Humza,

Just use Last() method as you do with ClosePrices and OpenPrices

                        if (Bars.ClosePrices.Last(1) > Bars.OpenPrices.Last(1) 
                        && Bars.ClosePrices.Last(2) > Bars.OpenPrices.Last(2)
                        && Bars.OpenPrices.Last(1) > _sma.Result.Last(1))
                        && Bars.OpenPrices.Last(2) > _sma.Result.Last(2)))

@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 07:05

RE: Issue in optimization.

Hi there,

Did you check the log of the optimization passes? There might be some useful information there.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 06:58

RE: Please Delete this indicators

Done


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 06:56

RE: RE: Repeated Disconnections

eynt said: 

PanagiotisCharalampous said: 

Hi there,

Your report did not log any disconnections. You need to send the troubleshooting not less than a couple of minutes after the disconnection happens.

Best regards,

Panagiotis

Hello

I am now reading again your reply and I'm not sure I understood. Does the troubleshooting information need to be MORE than 2 minutes after the disconnection or LESS?

Thank you for your calrification

Hi eynt,

It should be “not more” :)  So after you get a disconnection, send the troubleshooting as soon as possible


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 06:55

RE: force an indicator to refresh itself

Hi eynt,

No there isn't

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 06:51

reply

Hi there,

Here is an example how to calculate the moving average for the high prices

        var ma = Indicators.MovingAverage(Bars.HighPrices, 14, MovingAverageType.Exponential);

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Nov 2023, 06:51

reply

Hi there,

Here is an example how to calculate the moving average for the high prices

        var ma = Indicators.MovingAverage(Bars.HighPrices, 14, MovingAverageType.Exponential);

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Nov 2023, 09:57

Hi there,

Follower accounts are not accessible by an API.  You can get a statement only for the user interface.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Nov 2023, 07:09

Hi there,

If you are a broker, please contact your official support channel.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Nov 2023, 07:06

Hi there,

I have deleted these indicators too. Can you please record a video demonstrating the steps you are taking to reproduce this problem?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Nov 2023, 07:03

RE: Moving average on indicator disappears

ctid797322 said: 

they have to fix that shit its really annoying

 

Hi there,

We are not aware of any issue at the moment. Can you please provide us with steps to reproduce?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Nov 2023, 07:01

Hi there,

Here is some code to start with

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using cAlgo.API;
using cAlgo.API.Collections;
using cAlgo.API.Indicators;
using cAlgo.API.Internals;

namespace cAlgo.Robots
{
    [Robot(AccessRights = AccessRights.None)]
    public class NewcBot2 : Robot
    {
        DateTime _lastStopLoss;

        protected override void OnStart()
        {
            Positions.Closed += Positions_Closed;
        }

        private void Positions_Closed(PositionClosedEventArgs obj)
        {
            if(obj.Reason == PositionCloseReason.StopLoss) 
            {
                _lastStopLoss = Server.Time;
            }
        }

        protected override void OnTick()
        {
            if(_lastStopLoss.AddHours(24) > Server.Time) 
            {
                // Trade
            }
        }

        protected override void OnStop()
        {
            // Handle cBot stop here
        }
    }
}

@PanagiotisCharalampous

PanagiotisCharalampous
13 Nov 2023, 15:13

Hi there,

We cannot see any problems with the connection at the moment. Can you try to connect using Telnet and let us know the outcome?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Nov 2023, 14:53

Hi Takis,

Unfortunately I cannot reproduce such an issue. I will have to ask you one more time to share a video demonstrating the problem. 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Nov 2023, 14:39 ( Updated at: 13 Nov 2023, 14:40 )

RE: RE: RE: RE: Cast error in cTrader project

noppanon said: 

noppanon said: 

noppanon said: 

PanagiotisCharalampous said: 

Hi Noppanon,

Unfortunately it is not possible to determine the problem with this information. Please send us the complete solution file to community@spotware.com

 

Hi Support,

   I will create a simple indicator to reproduce the error. Please wait a couple days.

Noppanon

Hi Support,

   Please download my solution from this link.

https://drive.google.com/file/d/1QXIlnSYDMtlEIWfxrd8LT2Ddm4qh5X8k/view?usp=sharing

 

Noppanon

May I have some update, please?

Hi Noppanon,

I have responded via Telegram


@PanagiotisCharalampous