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

PanagiotisCharalampous
28 Aug 2024, 05:51

RE: RE: Add a comment to a existing position

keerthankumarkateel said: 

Spotware said: 

Dear Trader,

Currently, we don't provide users the ability to add/modify a comment in an existing position. We will consider providing it in the future. 

Additionally, you can post your ideas/suggestions to http://vote.spotware.com/

Any update on this? Is there anyway to add comments on the position once the position is opened?

No updates :)


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:48

The cbotset file is just a text file. So you can read it as any other text file and use the information as you wish.


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:45

RE: [Bug Report 1][Broken Link]

R0bot said: 

Hi,

The link for “Forum about algo trading” is not working.

Here is the correct link 

https://ctrader.com/forum/ctrader-algo/


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:42

Hi there,

You would need to write a cBot to achieve this.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:39

Hi there,

You are in a cTrader forum, therefore the obvious answer is C# and cTrader. There are plenty of resources out there. To get started with algo development for cTrader, you can follow these steps:

Explore Official Documentation: The first and most comprehensive resource is the official documentation provided by Spotware. You can access it on our website or through the cTrader platform itself. The documentation covers a wide range of topics, including API documentation, code samples, and tutorials.

https://help.ctrader.com/ctrader-algo/how-tos-index/

Watch Online Videos: Algo Trading in cTrader is a special playlist with educational videos for cTrader Algo provided by Spotware. Apart from that there are other youtube channels describing algo trading in cTrader. 

Visit Developers portal: ctrader.com is a dedicated platform for cTrader developers. It features a community forum where you can ask questions, share knowledge, and collaborate with other developers.

Explore Samples library: cTrader provides a big library of cBot and Indicator samples in the open source github platform: https://github.com/spotware/ctrader-automate-samples. You can use these samples for educational purposes and for building your own trading system without any license lock.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:28

Hi there,

This depends on may factors e.g. how much data is loaded on the chart, if there are indicators/cbots running on the chart etc. You should do your own tests to find out.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
28 Aug 2024, 05:24

Hi there,

If you are looking to hire a programmer for this, send an email to development@clickalgo.com

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 09:33

RE: RE: Quantower - ctrader proxy have very high ping last 2 weeks often at market open and high volume.

dischtrade2 said: 

PanagiotisCharalampous said: 

Hi there,

You should talk to Quantower about this.

Best regards,

Panagiotis

Hey! thanks for the reply..

18:01:55) Vadym: We do not have access to the server part, the platform processes and sends data from the server
(18:02:35) Vadym: if there are delays, then the problem is with the server or connection

(18:03:07) Vadym: We don't have servers and can't control it

Is what they told me.. 

But hopefully it will get sorted by itself maybe and som tweaking.. cheers.

 

If they think there is an issue with their connection to the server, they should raise it to Spotware directly and help them troubleshoot the problem. This cannot be solved over a forum thread


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 09:29

Hi there,

You have not provided a screenshot therefore it is hard for us to understand what you are doing. If you can provide a video and also rewrite a post in a form of a question, explaining what you expect to happen, it would help us help you.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:39

Hi there,

It sounds like daylight saving time. What timezone do you use? How can we reproduce this behavior?

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:35

Hi there,

Please share the complete code of both the cBot and indicator as well as steps to reproduce this behavior.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:33

Hi there,

Unfortunately no. Did you check the log of the stopped instance? Any useful information there?

Best regards

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:25

Hi there,

You should talk to Quantower about this.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:24

RE: RE: RE: RE: What kind of text?

karatedog said: 

PanagiotisCharalampous said: 

Hi there,

Please let us know which examples are obsolete so that we can update them.

Best regards,

Panagiotis

Hey Panagiotis,

I found a lot of examples that referred to MarketSeries to which I got a warning at build time that it is obsolete.

Thank you
karatedog

Hi there,

Please provide the links.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:23

RE: RE: How to clear the Bactesting tab after the backtest ran?

karatedog said: 

BlackTiger83 said: 

Why would you want that? Simply start a new test with new parameters :)

And hope for the script to be better? :D

Clearly, I have no idea why my script is wrong (otherwise I would not have programmed that problem into the script). So I have to “debug”. There is no debug feature in cTrader so I had to make it myself which is bastardizing the output screen with drawn characters where certain events should have happened (like to MAs crossing each other and THERE I expect the BUY to happen). I have to do this because cBots lack almost all plotting features that an Indicator has (for some weird reason). 

But those self-created debug prints will be completely overwhelmed by the result of the backtest and there was no obvious “clear” option.

When you add a symbol to a cBot, the starting screen is empty. Why isn't there an action that brings the user back to that empty state?

Also, this kind of displaying the trades (drawing gazillion horizontal lines) is pretty much useless, compared to what others do to make less noise:

Hi there,

It seems you are not very familiar with cTrader

There is no debug feature in cTrader

Of course there is, cTrader has the most advanced debugging options compared to other tools I know

 

I have to do this because cBots lack almost all plotting features that an Indicator has (for some weird reason).

No it doesn't. Check how you can plot indicators using a cBot https://help.ctrader.com/ctrader-algo/references/Attributes/RobotAttribute/?h=addindicat#addindicators

Also, this kind of displaying the trades (drawing gazillion horizontal lines) is pretty much useless, compared to what others do to make less noise:

The horizontal likes are not trades. They are positions and orders. You can enable/disable the in your chart's viewing options. Deals are represented with the deal map.

Take some time to learn cTrader better and your life will become easier :)


@PanagiotisCharalampous

PanagiotisCharalampous
27 Aug 2024, 06:00

RE: RE: RE: RE: using Bar collection and indicators (eg DMS) in background job.

Shares4us said: 

I have a backgroundworker that needs to use some indicators(eg DMS) while running calculating some MTF bars.
The values of the indicators are to be used in the backgroundcalculations and the indicators should preferably be local to the static backgroundworker.
Usage like var O = Bars[10].Open;
and like
var  RS = Indicators.RelativeStrengthIndex(closePrices, entry.14);
var I DM = Indicators.DirectionalMovementSystem(entry.14);

How to achieve that without invoking the main thread?

You can't. If you need data from the Bars object, you need to work on the main thread.


@PanagiotisCharalampous

PanagiotisCharalampous
26 Aug 2024, 09:07

Hi there,

Thanks for reporting this issue. It will be fixed in the next major update of the application.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Aug 2024, 08:05

RE: RE: RE: RE: how to write square and curly brackets in cTrader on Mac

levd20 said: 

PanagiotisCharalampous said: 

levd20 said: 

firemyst said: 

What do i do wrong?

You're using a Mac ;-)

ok i'll buy windows then…

jokes aside - i can type via option+5 in the search bar for the indicators without any problems.

just INSIDE the Code-area it is not available. i also checked for some hotkey assignments in the settings. option+5 was assigned → i changed it, but no impact 

Hi there,

What keyboard layout do you use?

Best regards,

Panagiotis

Good Morning Panagiotis,

iMac 27": mac OSVentura 13.6.9, Keyboard ("qwertz" / German), Keyboard Model A1843.
MacBook Air OS 14(I THINK), Keyboard ("qwertz"), MacBook Model  A1932.
 

Thank you in Advance!

Best regards

levd20 :)

It will be solved in an upcoming update. In the meanwhile, try using an English layout when typing code


@PanagiotisCharalampous

PanagiotisCharalampous
26 Aug 2024, 08:04

Hi there,

No it is not.

Best regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
26 Aug 2024, 07:58

Hi there,

What is the actual inquiry? Do you want somebody to develop this for you for free? Do you want to develop this yourself but you need clarifications? Please elaborate.

Best regards,

Panagiotis


@PanagiotisCharalampous