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

PanagiotisCharalampous
06 May 2024, 05:41

Hi there,

Can you share a link to the suggestion that has disappeared? Autochartist is only available to brokers that have subscribed to the service.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2024, 05:39

Hi there,

Use https://www.whatismyip.com

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2024, 05:37

Hi there,

  1. The cBot runs on the account currently connected to your cTrader.
  2. If you want to run your cBot independently you can use cTrader CLI
  3. If you run it through cTrader Desktop, yes. If you run it through cTrader CLI, then no.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2024, 05:34

Hi there,

Can you be more specific? Can you share some screenshots showing the respective issues?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
06 May 2024, 05:32

RE: RE: Cannot Switch between accounts

joby07rds said: 

PanagiotisCharalampous said: 

Hi there, 

Please share with us the following

  •  A screenshot of the full UI showing that there is only one account displaying in cTrader
  • A screenshot from the ID site showing that there are more than one accounts linked to this cTrader ID.

Best regards,

Panagiotis

 
 

image.png


 

Demo - Hedging - 4060387 - 47,150.85 USD - 1:100          This is with SwiftFunding 
 

Demo - Hedging - 4060387 - 47,150.85 USD - 1:100          This is with My Funded FX 
 


 


 

image.png
 

There is no option to switch accounts !! Currently, I can only use My Funded FX account. I want to be able to use both accounts by switching between them and taking trades !


 

Hi there,

The images are not visible. Can you please try again?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:38

Hi there, 

Please share with us the following

  •  A screenshot of the full UI showing that there is only one account displaying in cTrader
  • A screenshot from the ID site showing that there are more than one accounts linked to this cTrader ID.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:36

Hi there,

Feel free to post your suggestions in the link below

https://ctrader.com/forum/suggestions

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:33

Hi there,

Make sure .Net 6.0 SDK is installed on your computer.

https://dotnet.microsoft.com/en-us/download/dotnet/6.0

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:30

Hi there,

I do not understand what the problem is with the specific code sample. Can you please share the complete cBot code so that we can reproduce it and explain to us how we can see this?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:28

Hi there,

If you are looking for somebody to write the code for you, you can assign the job to a professional. If you need help to implement this yourself, please rephrase your post to a specific question that we can answer.

Best regards,

Panagiotis


 


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:19

Hi there,

No there aren't, you can use third party ones like cMAM and Trade Copier

https://clickalgo.com/ctrader-trade-copy

https://www.trade-copier.com

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:19

Hi there,

No there aren't, you can use third party ones like cMAM and Trade Copier

https://clickalgo.com/ctrader-trade-copy

https://www.trade-copier.com

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 May 2024, 15:17

Hi there,

Talk to sales@spotware.com

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
04 May 2024, 06:50

Hi there,

Protobuf class generation generates the ProtoOAGetPositionUnrealizedPnLRes class but it does not generate the code to handle the message. Therefore your code builds but it does not handle the specific message. For example, did you update the MessageFactory.GetMessage() method?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:10

Hi there,

You should talk to your broker regarding this matter.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:09

RE: RE: How to Reference chart count down Timer/Clock

zoo.digitaladv said: 

amusleh said: 

Hi,

You can't use the bar counter on chart from Automate API, and there is no need for it.

You can easily code one, each bar has an open time and if you know the time frame you can subtract the bar open time from current time, ex:

using System;using System.Linq;using cAlgo.API;using cAlgo.API.Indicators;using cAlgo.API.Internals;using cAlgo.Indicators;namespace cAlgo.Robots{    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]    public class NewcBot : Robot    {        private TimeSpan _barTimeLeft;        protected override void OnStart()        {            Timer.Start(1);        }                protected override void OnTimer()        {            var previousBarTimePeriod = Bars.LastBar.OpenTime - Bars.Last(1).OpenTime;            _barTimeLeft = previousBarTimePeriod - (Server.Time - Bars.LastBar.OpenTime);                        // Check logs, it should match with chart counter            Print("{0:hh':'mm':'ss}", _barTimeLeft);            // Close all positions if the time left is less than or equal 10 seconds            if (_barTimeLeft.TotalSeconds <= 10)            {                foreach (var position in Positions)                {                    ClosePosition(position);                }            }        }    }}

By any chance, there is one for mobile Android CTrader app? 

 

No there isn't one


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:09

Hi there,

Please talk to your broker about this matter.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:07

Hi there,

Can you please send us some troubleshooting info after this happens and quote the link to this discussion?

Best Regards,

Panagiotis 


 


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:02

RE: RE: My ROI (Monthly) View is Wrong

GMT.Invest said: 

PanagiotisCharalampous said: 

Hi there,

This is what I see at the moment. Is the issue still there for you?

Best regards,

Panagiotis

Hi Panagiotis,

 

Unfortunately, I still see the below on my end: (on Ctrader Web and via Desktop v. 4.8.30 as well)



That's weird. Could you please double check it why this discrepancy is happening?

Ty! Best!

Hi there, can you pelase advise the timezone your computer is using?


@PanagiotisCharalampous

PanagiotisCharalampous
03 May 2024, 15:00

Hi there,

The sample is not up to date with the latest protobuf files. Therefore you would need to develop this handling yourself.

Best regards,

Panagiotis


@PanagiotisCharalampous