Topics
16 Nov 2023, 07:42
 1105
 1
15 Nov 2023, 10:36
 1981
 16
Replies

Spotware
02 Sep 2014, 15:45

  1. Move your mouse over the Position line.
  2. Click and drag the Stop Loss or Take Profit to the rate you want.
  3. You will receive a confirmation of your order changes in the top right of your screen.

@Spotware

Spotware
02 Sep 2014, 14:16

Thanks for the suggestion we will consider it. 


@Spotware

Spotware
02 Sep 2014, 13:59

RE:

oguti said:

It would be possible to implement an Undo/Redo in graphics?

(For example, if I delete a line or other object accidentally, it could be recovered with CTRL+Z)

Regards

Thank you for your idea, we will consider it.


@Spotware

Spotware
02 Sep 2014, 12:04

jdaerial, could you please post the screenshot with the problem?


@Spotware

Spotware
02 Sep 2014, 09:57

In Minute bars data mode we generate 4 ticks (open, high, low, close) for every m1 bar.


@Spotware

Spotware
02 Sep 2014, 09:50

Thank you for your idea. We will consider it. Currently we plan to provide an ability to load tick data from a CSV file.


@Spotware

Spotware
02 Sep 2014, 09:47

RE: Ctrader Failed to save workspace - cannot connect to CHUB

jdaerial said:

Hi there,

I've been trying to login to Ctrader ID for desktop to save my workspaces - keeps coming up with an error message saying that workspace cannot be saved due to Chub not connecting.

Any ideas?

Thanks,

 

jdaerial, please press Shift+Ctrl+Alt+T. It will send us troubleshooting information.


@Spotware

Spotware
02 Sep 2014, 09:44

You can already modify stop losses and take profits by dragging it on the chart.


@Spotware

Spotware
01 Sep 2014, 11:57

mijo212, please check cAlgo 1.24. We optimized GetSeries method.


@Spotware

Spotware
01 Sep 2014, 11:56

cbellew, please check cAlgo 1.24. We optimized GetSeries method.


@Spotware

Spotware
01 Sep 2014, 11:07

RE: RE:

hiba7rain said:

Thanks its fine on previous bar value , so if someone decide to go OnTick instead of OnBar the values would be accurate or still with some difference?

 

Spotware said:

OnBar event happens when new bar is opened. At that moment MarketSeries collection already contains tick from new bar. It means that last bar is not formed and in general cases open = high = low = close. If you want to access to last formed bar you need take previous one.

            Print("{0}", ema.Result.Last(1));

 

 

In case of usage OnTick handler last bar is a live bar as well. You need to use previous values if you want to calculate indicator based on formed bars.


@Spotware

Spotware
01 Sep 2014, 10:33

OnBar event happens when new bar is opened. At that moment MarketSeries collection already contains tick from new bar. It means that last bar is not formed and in general cases open = high = low = close. If you want to access to last formed bar you need take previous one.

            Print("{0}", ema.Result.Last(1));

 


@Spotware

Spotware
01 Sep 2014, 09:55

Unfortunately we cannot reproduce the issue. Please try specify the scenario.


@Spotware

Spotware
01 Sep 2014, 09:53

Please make sure that Periods of indicators are the same. Also, it is not clear how do you print values of indicator, because statement Print("{0}", ema) supposed to print name of indicator instead of its values.


@Spotware

Spotware
01 Sep 2014, 09:44

Chart objects are not supported in backtesting. We plan to implement it in the future.


@Spotware

Spotware
01 Sep 2014, 09:36

Thank you for your suggestion. We will add Undo/Redo buttons in the future.


@Spotware

Spotware
29 Aug 2014, 17:05 ( Updated at: 21 Dec 2023, 09:20 )

RE:

rkokerti said:

Please do something with cAlgo, always crashes...

If it is possible, please send code of your cBot to engage@spotware.com. We will use it for troubleshooting purposes only.


@Spotware

Spotware
29 Aug 2014, 15:13

cTrader Web does not support the new timeframes yet. We will implement these in the future.

thanks


@Spotware

Spotware
29 Aug 2014, 14:39

Does your trader still observe the issue?


@Spotware

Spotware
29 Aug 2014, 14:24

You can specify ScalePrecision property of Indicator attribute:

    [Indicator("Stochastic Oscillator", ScalePrecision = 0, AccessRights = AccessRights.None)]
    public class StochasticOscillatorIndicator : Indicator, StochasticOscillator

 


@Spotware