
Topics
Replies
PanagiotisCharalampous
30 Jan 2019, 16:36
Hi Vito,
Since v3.3 all accounts need to be linked with a cTrader ID, in contrast with previous versions where you had the choice not to use cTrader ID but only your trading account. This happens because many of the features we develop are cloud based and require cTrader ID. Therefore we cannot support signing in with a trading account.
Regarding
"Why is it so important to prevent traders from re-assigning their accounts among their cTrader IDs easily on their own?".
We do not intentionally prevent it but it is a complicated feature to be developed due to the security implications. Also it is not a very common scenario therefore there is not much requests for it. At the moment it is easier for the broker to validate your request, make sure that you own the other cTrader ID as well and change the ownership of the account.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 15:17
Hi bienve.pf,
Ok now I understood. It should be working, we will check this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 14:40
( Updated at: 21 Dec 2023, 09:21 )
Hi bienve.pf,
Seems to be working fine for me. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 12:33
Hi bienve.pf,
Can you share the indicator with us? If programmed properly, it should work fine.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 12:14
Hi lw3010996,
if you remove this piece of code
thread.Join(); while (thread.IsAlive) System.Windows.Forms.Application.DoEvents();
It should work fine.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 11:51
Hi Nasser,
The feature is in our backlog but we do not expect to have this soon, at least in the following couple of updates. We will keep you posted regarding any progress.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 11:38
Hi Alex,
You cannot add it to Stochastic since Stochastic does not use such type of sources to be calculated. The calculation of Stochastic requires candlestick information. You can find the formula here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 11:33
Hi Vito,
Based on your description, it seems that the broker's portal does not give you the choice to link the account to the correct cTrader ID . This is out of our control and we are not aware how the portal is implemented, so you will need to discuss it with your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 11:25
Hi FMogyi,
Ok now its clear. To get the value of a trend line at a specific point in time, you can use CalculateY. Let me know if this helps.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 11:18
Hi quangson1511,
Thanks for posting in our forum and reporting this. We will investigate and let you know what happened.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 10:40
Hi Vitore,
Thanks for posting in our forum. How do you create your accounts? If you create a demo account using cTrader then the account should be linked to the cTrader ID you have used to sign in at the moment. If you create the account through another channel e.g. broker CRM, then you need to contact your broker about this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 10:32
Hi hsbcstor,
Indeed there are more errors you might get and we do not have them somewhere in the documentation at the moment. Most of the errors are self explanatory but we will add them in the documentation as well in the near future.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 10:07
Hi bienve.pf,
I am not sure what do you mean. You can choose the timeframe on Symbol parameters. Do you mean to get data from another timeframe that the one specified on the chart? If yes, read the discussion here.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 10:03
Hi FMogyi,
You can use GetIndexByTime and then use the index to get a specific value from a Series at a specific time. See an example below
var closePrice15hoursBefore = MarketSeries.Close[MarketSeries.OpenTime.GetIndexByTime(Server.Time.AddHours(-15))];
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
30 Jan 2019, 09:58
Hi tgjobscv,
There is no option to change the sound at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Jan 2019, 17:22
( Updated at: 21 Dec 2023, 09:21 )
Hi Alex,
Here is the indicator
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class OHLC4 : Indicator { [Output("Main")] public IndicatorDataSeries Result { get; set; } protected override void Initialize() { // Initialize and create nested indicators } public override void Calculate(int index) { // Calculate value at specified index Result[index] = (MarketSeries.Open.LastValue + MarketSeries.High.LastValue + MarketSeries.Low.LastValue + MarketSeries.Close.LastValue) / 4; } } }
Create it and add it to the chart. Then when you will add RSI, it will show up in the Source list. See below
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Jan 2019, 16:58
Hi Alex,
You can write the OHLC/4 indicator and feed it to the RSI. You do not need to develop the RSI from scratch.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Jan 2019, 16:56
Hi Glen,
There are solutions but substantial effort will be required. Most possible the solution will be to offer cloud execution of cBots. But we do not have anything concrete towards that direction yet.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
29 Jan 2019, 16:47
Hi Glen,
Even though we are not negative to the idea, I am afraid that this will not happen any time soon.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
31 Jan 2019, 09:47
Hi Alex,
Stochastc and Stochastic RSI are different indicators, Here is the Stochastic RSI for cTrader. Is takes a hardcoded MarketSeries.Close as input but you can easily tweak it to take it as a parameter and use OHLC/4 instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous