Topics
18 Jan 2024, 13:03
 0
 265
 0
20 Jul 2023, 13:17
 0
 411
 2
20 Jul 2023, 11:46
 0
 298
 1
20 Mar 2023, 12:08
 6
 1000
 4
09 Nov 2022, 11:47
 2
 649
 3
09 Nov 2022, 11:34
 1
 592
 1
03 Aug 2022, 11:57
 693
 3
28 Apr 2020, 10:28
 4
 1385
 5
05 Nov 2019, 15:13
 0
 1167
 1
05 Nov 2019, 15:10
 2
 1022
 1
Replies

cranmer767
05 Apr 2024, 15:28

RE: RE: RE: RE: RE: Trojan.GenericKD.72162484

razor_00 said: 

PanagiotisCharalampous said: 

razor_00 said: 

PanagiotisCharalampous said: 

jagwarcmj said: 

I have exactly the same problem with bitdefender detecting a trojan on my pc running windows 10.
Impossible to reinstall ctrader bitdefender detects a threat as soon as it is installed on the Core.Domain.Primitives.dll file which is infected.

Hi there,

Please share some screenshots of the messages you receive so that we can contact bitdefender.

Best regards,

Panagiotis

The same thing happened to me today. I am not able to add exceptions to bit defender, is it possible to fix the nuget package? The Chart Analysis Saver stopped working because of this.

Hi there,

There is nothing to fix on our side. Bitdefender needs to fix the false positive

Yes, makes sense.

After my long talk with them on Wednesday they are going to take a closer look at this.

 


@cranmer767

cranmer767
05 Apr 2024, 07:45

RE: RE: RE: Trojan.GenericKD.72162484

razor_00 said: 

PanagiotisCharalampous said: 

jagwarcmj said: 

I have exactly the same problem with bitdefender detecting a trojan on my pc running windows 10.
Impossible to reinstall ctrader bitdefender detects a threat as soon as it is installed on the Core.Domain.Primitives.dll file which is infected.

Hi there,

Please share some screenshots of the messages you receive so that we can contact bitdefender.

Best regards,

Panagiotis

The same thing happened to me today. I am not able to add exceptions to bit defender, is it possible to fix the nuget package? The Chart Analysis Saver stopped working because of this.

Not sure why you can't exceptions. Not sure if you have the free version or paid version of Bitdefender. If you have the free that could possibly be why there's no capability to add exceptions. My advise would be to use the live chat with Bitdefender and they can help you further regarding why you aren't able to add exceptions. They told me that they were going to look further into the issue of why it's flagging up a false positive.


@cranmer767

cranmer767
04 Apr 2024, 07:19

RE: Saving custom indicators folder

PanagiotisCharalampous said: 

Hi there,

Custom indicators can be found here

Documents\cAlgo\Sources\Indicators

Best regards,

Panagiotis

That's great. Many thanks.


@cranmer767

cranmer767
03 Apr 2024, 09:33

RE: RE: Trojan.GenericKD.72162484

PanagiotisCharalampous said: 

jagwarcmj said: 

I have exactly the same problem with bitdefender detecting a trojan on my pc running windows 10.
Impossible to reinstall ctrader bitdefender detects a threat as soon as it is installed on the Core.Domain.Primitives.dll file which is infected.

Hi there,

Please share some screenshots of the messages you receive so that we can contact bitdefender.

Best regards,

Panagiotis

 


@cranmer767

cranmer767
03 Apr 2024, 09:32

RE: Trojan.GenericKD.72162484

jagwarcmj said: 

I have exactly the same problem with bitdefender detecting a trojan on my pc running windows 10.
Impossible to reinstall ctrader bitdefender detects a threat as soon as it is installed on the Core.Domain.Primitives.dll file which is infected.

I have been on to Bitdefender for several hours this morning. The end of it was going through a process of going into Bitdefenders' <Protection>, <Advanced Threat Protection>, opening that and going to settings. Under that they had me select <manage exceptions> and then add exceptions for paths to the folders where the cTrader software is located. I also created an exception for the pathway which stopped me from downloading cTrader when I tried to download and reinstall it again. Fingers crossed that seems to have now solved the problem. Bitdefender is also now taking a closer look at the problem to resolve it.


@cranmer767

cranmer767
18 Jan 2024, 13:20

Setting your SL to the same price you entered at does not take into account spread or commission. Calculate how many pips are equal to the spread and any commission. Apply this to your entry plus maybe an additional pip for good measure to insure you actually get out at BE.


@cranmer767

cranmer767
09 Feb 2023, 10:21

Made the same suggestion myself ages ago but nothing ever came of it.

 


@cranmer767

cranmer767
02 Nov 2022, 16:41 ( Updated at: 21 Dec 2023, 09:23 )

RE: Multiple moving average cloud indicator

firemyst said:

If you're a programmer doing what you want isn't too difficult:


Unfortunately, I’m not a programmer. 


@cranmer767

cranmer767
03 Aug 2022, 13:56

Active Trade Panel

Thank you. I'd like to make a suggestion that this feature be added or that the ability to close all charts be incorporated. If all charts could be closed leaving only the Active Trade Panel then the cTrader window could be reduced in size or placed on another monitor.  Trades could then be placed using cTrader whilst using another charting software program. 


@cranmer767

cranmer767
19 Feb 2021, 10:36

RE: Yes, I defnitely agree as well. You should be able to set a customised timeframe like the vast majority of other charting platforms that have tick charts.

phildasniperstodds said:

The tick charts are ok, but 1000 ticks is still too low of a timeframe resemblance for many traders......increase them please.

 


@cranmer767

cranmer767
05 Nov 2020, 15:15

RE:

PanagiotisCharalampous said:

Hi cranmer767,

This functionality can be easily coded by the community. See a cBot example below

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 ScrollTo : Robot
    {
        [Parameter(DefaultValue = 2014)]
        public int Year { get; set; }

        [Parameter(DefaultValue = 1)]
        public int Month { get; set; }

        [Parameter(DefaultValue = 1)]
        public int Day { get; set; }

        protected override void OnStart()
        {
            var date = new DateTime(Year, Month, Day);

            while (Bars.OpenTimes[0] > date)
                Bars.LoadMoreHistory();
            Chart.ScrollXTo(date);
        }

        protected override void OnTick()
        {
            // Put your core logic here
        }

        protected override void OnStop()
        {
            // Put your deinitialization logic here
        }
    }
}

Best Regards,

Panagiotis 

Join us on Telegram

Hi Panagiotis,

Many thanks for the reply. Would prefer that it was available on current charts.

Best regards,

Carr


@cranmer767

cranmer767
01 Nov 2020, 17:49

RE:

richardkurta said:

It will be great to have option "GO TO DATE" to move chart back in time. Now its is possible only by moving mouse.

 

I definitely agree and support this simple request. Most quality trading and software packages offer this feature yet cTrader/Spotware seem incapable or indifferent to offering it despite all the requests.


@cranmer767

cranmer767
30 Apr 2020, 12:40

RE: RE:

juanbertrading said:

cranmer767 said:

Please add the capability to use a custom time period for charts, e.g. 2hr, 6hr, 8hr, etc.

It actually is, but it depends on the broker you use, on icmarkets you can use many mor period

Hi, I use ICMarkets but unfortunately I don't see a 2 hour time period available in the drop down menu nor the capability to specify a custom time period.


@cranmer767