Topics
Replies
PanagiotisCharalampous
19 Feb 2021, 13:47
Hi fransiscustanu,
To investigate further we need to have your broker and account number.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 12:53
( Updated at: 21 Dec 2023, 09:22 )
Hi Jerry,
It makes absolute sense. This information is actually stored in the database. Place a suggestion and I will explore with the product team in if it can be exposed to the API as well.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 12:49
Hi malhajj,
Thanks for taking the time to report this issue. We are aware of it and we will explore improvements in future updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 12:46
Hi fransiscustanu,
There are many reasons a trade would not be copied. In this case, you are already trading a large amount and the broker might not allow you to open more positions on this symbol.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 12:37
Hi Jerry,
Unfortunately there is no way to get this information from the API at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 07:55
Hi Share4us,
We cannot reproduce this. Can you please share some source code?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 07:53
Hi deknibar,
Could you share some source code so that we can see what are you looking at?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 07:49
Hi franc386,
Please send us some troubleshooting information (Ctrl+Alt+Shift+T). Paste the link to this discussion in the text box that will appear and press Submit.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 07:46
Hi jayteasuk,
Yes we did not change anything.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 07:45
Hi carlosrodriguez1982,
1) There is no limit.
2) We just stream whatever we receive from the LP
3) Yes correct
4) No. The most time consuming part here is writing to the database which would be the same for both cases.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 14:58
Hi deknibar,
Maybe you can describe what you are actually trying to do so that we can think of the best approach.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 14:28
Hi Christian,
I cannot seem to be able to build the indicator. There are a lot of references missing.
In any case a slower backtesting does not necessarily mean that there is a problem. Some calculations are more complicated and take more time than others.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 14:02
Hi Christian,
Can you please post the complete cBot and Indicator source codes and steps to reproduce the problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 11:36
( Updated at: 21 Dec 2023, 09:22 )
Hi,
Did you add a reference to System.Windows.Forms?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 11:13
Hi Shares4us,
We investigated this issue and it seems that when you ask for an indicator with the exact same parameters (none in this case) for a second time, the constructor will return you the previous instance, for memory efficiency purposes. It seems that the way you use the indicators was not anticipated while designing this behavior. I will discuss it with the product team. In the meanwhile the workaround is to pass some kind of a dummy parameter to the constructor to force it to generate a new instance of the indicator e.g.
[Parameter(DefaultValue = Modes.Mode3)]
public Modes ModeParameter { get; set; }
public Modes Mode { get; set; }
protected override void Initialize()
{
Mode = ModeParameter;
}
The result should be
_indicator1 = Indicators.GetIndicator<IndicatorWithModes>(Modes.Mode2);
_indicator2 = Indicators.GetIndicator<IndicatorWithModes>(Modes.Mode3);
Print("Object indicator1 reference equals object indicator2 {0}", object.ReferenceEquals(_indicator1, _indicator2)); //returns FALSE
Let me know if this helps.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 10:16
Hi mehmetozhanhastaoglu,
It is not clear from your description what really happened. Can you please provide more information i.e. what steps did you take to get these requests? For example, did you press a button? Are you running a cBot? What actually happened?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 10:01
Hi fishing_v,
Do you still experience this issue? Can you provide more information?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 09:58
Hi wisefincial.
Do you still have this issue? Can you please explain what is the exact problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Feb 2021, 09:51
Hi wayli724,
Can you please provide more information about this issue? What is the exact problem?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Feb 2021, 15:50
Hi Johannes,
Unfortunately we will need more information in order reproduce this issue and fix it. For example, could you record a video demonstrating such a case?
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous