Topics

Forum Topics not found

Replies

cAlgo_Fanatic
05 Jul 2013, 10:24

First of all let us assure you that there are no requotes with cTrader.

We will have a Journal tab in the future where all pop up messages will be saved. 

In order to investigate further, please let us know if you are experiencing freezing on specific occasions or if it seems random, as well as if it is happenning on both cTrader Web and cTrader.
It will also help if we have information about your computer (cpu & ram) and which other applications you are running together with cTrader.
Also, which browser you are using when running cTrader web.


@cAlgo_Fanatic

cAlgo_Fanatic
05 Jul 2013, 09:38

RE:
lec0456 said:

Can anyone point me to the thread that provides an example of how to adjust trade volume lots beased on a percentage of account?  I know its been discussed before. thanks

There are a few threads if you search for "risk percent".

/algos/robots/show/271

/forum/cbot-support/549

/forum/cbot-support/859

 


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 18:00

RE: RE:
remz said:
cAlgo_Fanatic said:

Hello,

In the settings make sure that you either set it to single click or double click and that you are using the appropriate action. As far as technical errors are concerned, this is usually due to invalid parameters set for either volume, take profit or stop loss, etc. Make sure that all settings are correct and let us know if the problem persists.
You may send us an email with information about your account and platform information as well as the symbol and approximate time you used for this trade attempt so that we can investigate this further.

I use the same settings 9 times out of 10. If I change something, that is the SL value. And now for the first time I changed the volume, I used the drop down menu for choosing the value, so no typing error. And later it was filled with these settings, only it was not the entry I wanted, so no invalid parameters for sure. I will send you an email. Where should I send it? Thank you!

 

Please send it to engage@spotware.com.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 17:23

Hello,

In the settings make sure that you either set it to single click or double click and that you are using the appropriate action. As far as technical errors are concerned, this is usually due to invalid parameters set for either volume, take profit or stop loss, etc. Make sure that all settings are correct and let us know if the problem persists.
You may send us an email with information about your account and platform information as well as the symbol and approximate time you used for this trade attempt so that we can investigate this further.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 16:02

This feature is already under implementation.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 15:44

You can download this indicator Price Alarm (Sound) which is similar to your request for alarms.
For email notifications please see the API reference examples:/api/internals/inotifications/sendemail-0857

Refer to this video for instructions on email settings.

Let us know if you need additional help.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 10:38

More timeframes will be included in the future.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 10:29

Are you referring to the stochastic oscillator? The code is posted here: /forum/calgo-reference-samples/657. You may modify the source code as you wish.
According to the definition of the stochastic there is no input of price source.


@cAlgo_Fanatic

cAlgo_Fanatic
04 Jul 2013, 10:25

We do understand the necessity of more backtesting data in cAlgo and we are working on adding more.  It is comming soon. Thank you.


@cAlgo_Fanatic

cAlgo_Fanatic
02 Jul 2013, 17:43

Hello,

The backtest history will have an option to export to excel in the next release, next week. 


@cAlgo_Fanatic

cAlgo_Fanatic
02 Jul 2013, 17:05

Not at the moment. We will let you know soon.


@cAlgo_Fanatic

cAlgo_Fanatic
01 Jul 2013, 10:44

Encryption is coming soon.


@cAlgo_Fanatic

cAlgo_Fanatic
01 Jul 2013, 10:42

We will add this in the future. 


@cAlgo_Fanatic

cAlgo_Fanatic
01 Jul 2013, 10:15

Just make sure you don't build the empty .cs file.


@cAlgo_Fanatic

cAlgo_Fanatic
01 Jul 2013, 09:44

These links will be useful:

http://help.spotware.com/calgo

/api/

http://www.csharp-station.com/Tutorial.aspx

Look at the samples in the cAlgo platform as well as what has been uploaded in the indicators and robots sections for examples.

You can find more sample code here as well:

/forum/calgo-reference-samples

 


@cAlgo_Fanatic

cAlgo_Fanatic
28 Jun 2013, 18:04

About the connection problems we are working hard on fixing the few remaining issues and optimizing the platfoms even further.

More historical data will be added soon for backtesting.

A breakeven value is also under implementation.

 


@cAlgo_Fanatic

cAlgo_Fanatic
28 Jun 2013, 17:24

OBSOLETE - SEE FOLLOWING REPLY
OBSOLETE

It cannot be done through the input parameters. You need to change the code.
You would have to declare a WellesWilderSmoothing type instead of a MovingAverage type for these two Indicators: _slowK and  _averageOnSlowK.

e.g.

private WellesWilderSmoothing _slowK;
private WellesWilderSmoothing _averageOnSlowK;


instead of

    private MovingAverage _slowK;
    private MovingAverage _averageOnSlowK;


Then in the Initialize method 

_slowK = Indicators.WellesWilderSmoothing(_fastK, KSlowing);
_averageOnSlowK = Indicators.WellesWilderSmoothing(_slowK.Result, DPeriods);



 


@cAlgo_Fanatic

cAlgo_Fanatic
28 Jun 2013, 16:43

You need to reset your global field _position to null when the position gets closed for proper results:

        protected override void OnPositionClosed(Position position)
        {
            _position = null;
        }




@cAlgo_Fanatic

cAlgo_Fanatic
26 Jun 2013, 17:51

See the solution here /algos/robots/show/309


@cAlgo_Fanatic

cAlgo_Fanatic
26 Jun 2013, 17:10

You cannot transfer your saved templates at the moment.  In the near future your saved templates and settings will be accessible from cTrader and cTrader Web alike. You will not have to transfer anything.


@cAlgo_Fanatic