Topics
Replies
PanagiotisCharalampous
21 Aug 2020, 08:17
Hi Vitali,
Can you please provide us the indicator code and the broker?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Aug 2020, 10:27
Dear all,
We are planning to add more options to QuickTrade trading in future releases of the mobile applications. The new modes should help minimizing this issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Aug 2020, 08:06
Hi Sam,
See an example below
using System;
using cAlgo.API;
using cAlgo.API.Indicators;
namespace cAlgo.Indicators
{
[Indicator(IsOverlay = false, AccessRights = AccessRights.None)]
public class TickVolumeTheMinimalTrader : Indicator
{
[Output("UpVolume", LineColor = "Green", PlotType = PlotType.Histogram, Thickness = 4)]
public IndicatorDataSeries UpVolume { get; set; }
[Output("DownVolume", LineColor = "Red", PlotType = PlotType.Histogram, Thickness = 4)]
public IndicatorDataSeries DownVolume { get; set; }
[Output("MA", LineColor = "Blue", PlotType = PlotType.Line, Thickness = 4)]
public IndicatorDataSeries MA { get; set; }
[Parameter(DefaultValue = 10)]
public int Periods { get; set; }
private MovingAverage volumeMA;
protected override void Initialize()
{
// Initialize and create nested indicators
volumeMA = Indicators.MovingAverage(Bars.TickVolumes, Periods, MovingAverageType.Simple);
}
public override void Calculate(int index)
{
UpVolume[index] = Bars.TickVolumes[index];
if (UpVolume[index] < UpVolume[index - 1])
DownVolume[index] = UpVolume[index];
else
DownVolume[index] = 0;
MA[index] = volumeMA.Result[index];
}
}
}
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Aug 2020, 07:53
Hi bdouglas,
Please let us know what do you think the issue is, who is the broker and what is the symbol of the chart.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Aug 2020, 07:51
Hi Sam,
It does not work because you expect a day to a Friday and a Saturday and a Sunday at the same time. Try an OR condition instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
20 Aug 2020, 07:43
Hi amirus.stark,
There is no such option at the moment I am afraid.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 14:35
Hi twoheartzin1soul,
You can use the GetBars() method and retrieve the monthly timeframe bars.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 14:03
Hi genappsforex,
I tried reproducing this behavior but I could not. Are there any specific steps I should follow?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 10:39
Hi mlcilia,
The problem lies in this condition
Bars.HighPrices[index] > Bars.HighPrices[index + e]
You are looking for a future value which will always be null for future values. Therefore the code will never enter into this part of the code. It will only work for past values and this is why you get past values when you add an indicator. But if you leave the indicator on the chart for a while, you will see that the indicator behaves the same way.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 09:39
Hi Balazs,
If you can still experience the technical issue you described, please record a video and send it to us to investigate further. For refund requests, please talk to your broker.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 08:31
Hi Jude,
Can you remove the indicators and let us know if the problem persists? If not, then please send us the indicators at community@spotware.com to investigate further
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
19 Aug 2020, 08:11
Hi Jude,
Are you running any custom indicators/cBots on cTrader?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 11:03
Hi 1222Ht,
We received your troubleshooting information. It seems you are using some custom indicators that are causing this behavior. You need to provide us with your indicators to check further what is causing the issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 09:39
Hi ergun,
If they are different accounts then there is a possibility to receive a different price stream. You need to talk to IC Markets regarding this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 09:07
Hi ergun,
You did not answer my question. Is this the same account? Can please take screenshots showing that there are different charts on the same account? Make the account number visible.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 07:45
Hi fcarabat,
If you are sure that the error is caused by the indicator, then you should contact the indicator's developer.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 07:43
Hi ergun,
Do you use the same broker and account in both cases?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 07:37
Hi Lukasz,
Most probably the problem is that you print the indicator's last value on bar opening. The indicator's value will probably change until the bar closes. If you want to compare finalized values, you should check Last(1).
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
18 Aug 2020, 07:33
Hi James,
Yes you can. Color options are saved in templates. You can save your Color Options in a template and make this template, the default template.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
21 Aug 2020, 08:22
Hi bienve.pf,
There is no other way at the moment. Your solution should work fine.
Best Regards,
Panagiotis
Join us on Telegram
@PanagiotisCharalampous