Topics
04 Oct 2023, 09:49
 341
 2
19 May 2023, 16:58
 0
 388
 1
Replies

RazorTrading
09 Apr 2024, 08:09

RE: HP Wolf Security

brokechicken69 said: 

A similar message popped up today from HP Wolf Security. Obviously I deleted the file and uninstalled cTrader. 

Two false positives from two different security softwares is weird.


@RazorTrading

RazorTrading
05 Apr 2024, 07:57

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

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.


@RazorTrading

RazorTrading
04 Apr 2024, 14:39

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

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.


@RazorTrading

RazorTrading
11 Jan 2024, 07:21 ( Updated at: 12 Jan 2024, 06:56 )

RE: RE: RE: RE: Draw issue

PanagiotisCharalampous said: 

razor_00 said: 

PanagiotisCharalampous said: 

GOLDEN.DRAGONS said: 

I got the same issue recently. When I would try to use any objects like Trend Line or Fibonacci Fan and etc. it will get out of mouse control when market is ticking but when a symbol stopped or disabled I can draw properly.
Using cTrader 4.8.28 on Errante

Hi there,

Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.

Best regards,

I made a simple indicator that will cause this issue to occur 100% of the times. The line causing the issue is DrawText or drawing anything every tick, if I am drawing something or drawing on the chart window, the object will lose focus as soon as Calculate is invoked on the indicator.

Code below:

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{    [Indicator(AccessRights = AccessRights.None, IsOverlay = false)]    public class DrawingBug : Indicator    {        public override void Calculate(int index)        {            IndicatorArea.RemoveObject("test");            IndicatorArea.DrawText("test", "BUG!!!", Bars.Last().OpenTime, 0, Color.Red);        }    }}

Hi razor_00,

Thank you, I have forwarded this to the product team for resolution. In the meanwhile, the issue is caused by the RemoveObject method, which in this case is redundant, you don't need to remove an object in order to redraw it. If you remove that line of code, it should fix the problem.

Best regards,

Panagiotis

Thanks for your reply, I will modify my indicator, anyway the remove and draw calls should not call this behaviour, is that correct? Is that going to be fixed in future versions?


@RazorTrading

RazorTrading
10 Jan 2024, 16:02 ( Updated at: 11 Jan 2024, 06:21 )

RE: RE: Draw issue

PanagiotisCharalampous said: 

GOLDEN.DRAGONS said: 

I got the same issue recently. When I would try to use any objects like Trend Line or Fibonacci Fan and etc. it will get out of mouse control when market is ticking but when a symbol stopped or disabled I can draw properly.
Using cTrader 4.8.28 on Errante

Hi there,

Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.

Best regards,

I made a simple indicator that will cause this issue to occur 100% of the times. The line causing the issue is DrawText or drawing anything every tick, if I am drawing something or drawing on the chart window, the object will lose focus as soon as Calculate is invoked on the indicator.

Code below:

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
{
    [Indicator(AccessRights = AccessRights.None, IsOverlay = false)]
    public class DrawingBug : Indicator
    {
        public override void Calculate(int index)
        {
            IndicatorArea.RemoveObject("test");
            IndicatorArea.DrawText("test", "BUG!!!", Bars.Last().OpenTime, 0, Color.Red);
        }
    }
}

@RazorTrading

RazorTrading
10 Jan 2024, 16:02 ( Updated at: 11 Jan 2024, 06:21 )

RE: RE: Draw issue

PanagiotisCharalampous said: 

GOLDEN.DRAGONS said: 

I got the same issue recently. When I would try to use any objects like Trend Line or Fibonacci Fan and etc. it will get out of mouse control when market is ticking but when a symbol stopped or disabled I can draw properly.
Using cTrader 4.8.28 on Errante

Hi there,

Could you please send us some troubleshooting information the next time this happens? Please paste a link to this discussion inside the text box before you submit it.

Best regards,

I made a simple indicator that will cause this issue to occur 100% of the times. The line causing the issue is DrawText or drawing anything every tick, if I am drawing something or drawing on the chart window, the object will lose focus as soon as Calculate is invoked on the indicator.

Code below:

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
{
    [Indicator(AccessRights = AccessRights.None, IsOverlay = false)]
    public class DrawingBug : Indicator
    {
        public override void Calculate(int index)
        {
            IndicatorArea.RemoveObject("test");
            IndicatorArea.DrawText("test", "BUG!!!", Bars.Last().OpenTime, 0, Color.Red);
        }
    }
}

@RazorTrading

RazorTrading
10 Jan 2024, 15:00 ( Updated at: 10 Jan 2024, 15:14 )

Same is happening to me, really annoying.

Something that happen to me: I draw a rectangle and the resizing stops immediately (it's like the shape loses focus). If that happens and I switch between the timeframes, the shape will not resize according to the different timeframe scale, it's like it's been drawn on the window, but not linked to price level coordinates.

 

I have more info: I noticed it only happens to me when I have 5 or more charts open with an indicator I made that adds or remove chart objects, so it's probably interfering with the regular drawing. I will try to debug it and fix it for me, but for other users, it could be an indicator messing up with the drawing.


@RazorTrading

RazorTrading
05 Oct 2023, 06:08

RE: Paid Indicators

PanagiotisChar said: 

Hi there,

The Algorithms section does not work as a store. If you want to sell your cBot, you need to develop your own licensing system and payment process. Check what others do.

I see, thanks for the reply. But what's the point of uploading the .calgo file and the download button, then? Is there a way to unlock it for certain users?


@RazorTrading

RazorTrading
22 Sep 2023, 13:43 ( Updated at: 23 Sep 2023, 05:23 )

RE: Chart drawings are not present on new chart windows

PanagiotisChar said: 

Hi there,

This is by design, I don't think it will change. Check the indicator below, you might find it helpful

https://ctrader.com/algos/indicators/show/2855

Thanks for your reply, I am looking at the indicator, do you know what's the difference between interactive and non interactive drawings?

Thanks


@RazorTrading