Topics
31 Jan 2016, 14:34
 2333
 4
21 Sep 2015, 15:09
 2230
 4
Replies

tdezo
04 Feb 2016, 13:22 ( Updated at: 21 Dec 2023, 09:20 )

RE: RE:

thanks tmc , appreciate your help.

Is there any way to mark templates so when I apply it it shows name on chart ?

You can make simple indicator which would show a text on the chart. Then you can put it into each template and save it.

using cAlgo.API;

namespace cAlgo
{
    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class Note : Indicator
    {
        [Parameter("Note", DefaultValue = "Template name")]
        public string Text { get; set; }

        protected override void Initialize()
        {
            ChartObjects.DrawText("note", Text, StaticPosition.TopRight, Colors.Gray);
        }

        public override void Calculate(int index)
        {
            return;
        }
    }
}

 

How can I delete custom indicators from scrolling list , not from chart? I downloaded many and the list is just too long .

 There are 2 options.

  • Delete it from cAlgo platform.

  • Delete cAlgo from Indicators folder. %userprofile%\Documents\cAlgo\Sources\Indicators

 


@tdezo

tdezo
25 Oct 2015, 04:28

RE:

Spotware said:

Dear Traders,

We are aware of the issue with 4K resolutions. We plan to optimize graphical performance in the future.

What is the max resolution for ctrader.   I plan to buy 2560x1440 monitors , Could I use them?


@tdezo

tdezo
25 Oct 2015, 04:26

What is the max resolution for c trader?  I plan to use 2560x 1440 monitors!


@tdezo

tdezo
25 Oct 2015, 04:25

RE:

Elogos said:

Some draconian moderation measures are in play here. I didn't say anything that was bad, just that I stopped using this platform and have my own platform that charting platform that runs exactly how I need. 

I never make posts like this on any forum however with a company that talks about transparency I am very concerned.

 

 


@tdezo

tdezo
22 Sep 2015, 14:16 ( Updated at: 21 Dec 2023, 09:20 )

RE:

 

Dear Trader,

To be able to save your workspace you need to have acTrader ID (cTID).

Click "My Workspace" and save your workspace for each account:

The next time you open cTrader from your office for example you will login using your cTID and the workspace with the latest settings you saved (at home), and your linked account will be available to you.

Its better now , I get back the same charts after log in . Multimonitor setup still causes problems but I can fix that in a few minutes.


@tdezo

tdezo
22 Sep 2015, 04:42 ( Updated at: 21 Dec 2023, 09:20 )

RE:

Spotware said:

Dear Trader,

To be able to save your workspace you need to have acTrader ID (cTID).

Click "My Workspace" and save your workspace for each account:

The next time you open cTrader from your office for example you will login using your cTID and the workspace with the latest settings you saved (at home), and your linked account will be available to you.

Thanks for your quick reply , Ill try it next time making sure I was logged in and saved my workspace.


@tdezo