Topics
16 Nov 2023, 07:42
 1089
 1
15 Nov 2023, 10:36
 1968
 16
Replies

Spotware
03 Feb 2014, 11:44

.algo files are encrypted.

Please see /forum/cbot-support/2051


@Spotware

Spotware
03 Feb 2014, 11:33

cAlgo doesn't support arrows yet. Please vote for your favorite features: vote.spotware.com


@Spotware

Spotware
31 Jan 2014, 17:58

We don't have plans to support candles by drawing histogram lines. At some point we will add Candle object in the API. For now you can draw candles manually by drawing lines.

cAlgo is optimized to show thousands of chart objects.


@Spotware

Spotware
31 Jan 2014, 17:33

We have plans to add such functionality. Thank you for your feedback.


@Spotware

Spotware
31 Jan 2014, 15:31

Dear Elogos,

Could you please show an example of such indicator?


@Spotware

Spotware
31 Jan 2014, 14:48

Currently it is not possible. We have plans to implement visual mode in backtesting. Please vote for your favorite features:
http://vote.spotware.com/forums/229166-ideas-and-suggestions-for-ctrader-and-calgo/category/76800-calgo


@Spotware

Spotware
31 Jan 2014, 10:26

We had a performance issue in backtesting. Now it is fixed. New version of cAlgo will be available next week.


@Spotware

Spotware
31 Jan 2014, 09:56

We finished development of introducing CFDs. Now it is up to brokers to support CFDs. Please contact your broker for adding CFDs.

We are considering to support futures in the platform.


@Spotware

Spotware
31 Jan 2014, 09:02

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.

You need to change your code:

 protected override void OnBar()
        {
            // Put your core logic here
            //getCandleStickPattern(0);
            var close = MarketSeries.Close.Last(1);
            var high = MarketSeries.High.Last(1);
            var low = MarketSeries.Low.Last(1);

            Print("Current close {0}, high {1}, low {2}", close, high, low);
        }

 


@Spotware

Spotware
30 Jan 2014, 17:15

The cAlgo API is not multi-threading and you do not need to synchronize anything. 
Multi-threading issues could possibly be happening if you are using the Timer class because then that would be invoked in a separate thread. We do not recommend the usage of the Timer class since the cAlgo API is not thread-safe.
The cAlgo API should not be accessed by multiple threads.


@Spotware

Spotware
30 Jan 2014, 15:20

We cannot provide a time estimate for their release at the moment.
Thank you for the suggestion on automatic margin calculation. We may include it in the future. 


@Spotware

Spotware
30 Jan 2014, 15:11

If you are upgrading from Windows XP, our tests indicate that cTrader runs smoothly on Windows 7.


@Spotware

Spotware
30 Jan 2014, 14:23

We are investigating this. We apologize for the inconvenience.


@Spotware

Spotware
30 Jan 2014, 14:22 ( Updated at: 21 Dec 2023, 09:20 )

We are planning to include these features in the cTrader desktop version as well.

About the line chart color, you can modify it from the top center menu. Choose Bear Outline from the Colors menu:


@Spotware

Spotware
30 Jan 2014, 10:43

Please follow these instructions to clear the ClickOnce file directory:

  1. Hold down the Windows key, and press R. The Run box should appear.

  2. Into the Open field, enter C:\Users\%USERNAME%\AppData\Local\Apps, then click OK. This will open Windows Explorer. ( %USERPROFILE%\AppData\Local\Apps)

  3. Delete the folder names **2.0**

  4. Reinstal the application

  5.  


@Spotware

Spotware
30 Jan 2014, 10:33

Thank you. It has been corrected.


@Spotware

Spotware
30 Jan 2014, 10:31

See also: NormalizeVolume. You can use it to round up, down or to the nearest volume accepted for trade.


@Spotware

Spotware
30 Jan 2014, 10:24 ( Updated at: 21 Dec 2023, 09:20 )

You can simply click on the chart and they will disappear. As far as showing all deals you can enable the Deal Map from the menu in the top center:


@Spotware

Spotware
29 Jan 2014, 09:30

Your PC specifications are good enough to use cTrader but in case you are using a lot of charts, it is recommended that you upgrade the memory.


@Spotware

Spotware
28 Jan 2014, 16:53

We would appreciate it if you could send us troubleshooting information by pressing CTRL+SHIFT+ALT+T on your application.


@Spotware