Topics

Forum Topics not found

Replies

cAlgo_Fanatic
27 Mar 2013, 14:39

This indicator cannot be converted fully with the current version of the API. However, drawing rectangles will be possible in a future release and then this indicator may be translated. If you wish, you may plot only the line of this indicator and we will help you with the code.


@cAlgo_Fanatic

cAlgo_Fanatic
27 Mar 2013, 14:17

No, the chart is not interactive this way. You can access the Symbol Ask and Bid values in Robots/Indicators as well as MarketSeries OHLC prices. Could you explain what exactly you need to do?


@cAlgo_Fanatic

cAlgo_Fanatic
27 Mar 2013, 11:18

Hello,

The Pitchfork will be included in the next release of cTrader Web. 

 


@cAlgo_Fanatic

cAlgo_Fanatic
27 Mar 2013, 10:27

Hi, if you right click on the chart and click on Indicators a list will appear with the indicator categories. You may add indicators this way and repeat the same process over.

The Awesome Oscillator you are referring to is a custom indicator which you need to download and build in cAlgo. For instructions click on the "How to install" link in the Indicators page.

To get started visit:

http://help.spotware.com/


@cAlgo_Fanatic

cAlgo_Fanatic
27 Mar 2013, 09:58

It is not possible to do so right now. We may implement this in the future.


@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 17:49

It will be possible to close all positions and stop the robot but not other robots.

Set a flag(bool) assigned true when the equity reaches the target and if that flag is true check if the equity reached the stopout.
Please clarify the relationship between the two targets/stopouts, are you just giving two different examples?

@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 12:45

Yes, the robot's logic is based on all the positions of the account. In order to modify you would have to use either labels or a list for the opened positions. See the comment in the algorithms page as well.


@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 11:21

Unfortunately there is no workaround but it will be added in a future release.


@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 11:18

Are you refering to a robot /algos/show/225?

If so, are you asking about running the same forex robot twice on the same currency?

Please clarify a little or post the code if this is not the robot you are referring to with a small description of the logic. 


@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 10:53 ( Updated at: 23 Jan 2024, 13:11 )

Please refer to [/forum/indicator-support/623]


@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 10:49

OnPositionOpened will be triggered for the positions opened by the same robot.

You could accomplish what you need with a robot that checks the account position count on each tick.

protected override void OnTick()
{
    if(_count != Account.Positions.Count)
    {
        if(_count < Account.Positions.Count)
            Notifications.SendEmail("email@gmail.com", "email@gmail.com", "Position Opened", "The position has been opened");
        _count = Account.Positions.Count;
        
    }
}




@cAlgo_Fanatic

cAlgo_Fanatic
26 Mar 2013, 10:24

Yes, you are correct. We will correct this promptly. Thank you for reporting this.


@cAlgo_Fanatic

cAlgo_Fanatic
22 Mar 2013, 13:00

We received your email. As mentioned before check the log for errors. Programming error messages are printed in the log unlike trading errors that are pop up messages. The robot crashes with a NullReferenceException in the OnTick event.


@cAlgo_Fanatic

cAlgo_Fanatic
22 Mar 2013, 11:20

Please check the log for errors if you haven't done so. If you are using the Stop() statement in the code, make sure it is properly triggered. If not, you may post the code or send it to engage@ctrader.com so that we can assist you.


@cAlgo_Fanatic

cAlgo_Fanatic
22 Mar 2013, 09:30

You may add only the symbols you use to your Favorites and use the Favorites tab instead. This way you will reduce the load as well. (click on the star, right under the symbol code).
You can also change the layout to completely hide the market watch and eliminate all bandwidth from symbols. 


@cAlgo_Fanatic

cAlgo_Fanatic
21 Mar 2013, 10:36

The easiest way to access the location is to right click on the cAlgo.exe file from task manager -> Processes and Open File Location.


@cAlgo_Fanatic

cAlgo_Fanatic
21 Mar 2013, 09:56

cAlgo and cTrader use ClickOnce deployment technology, that is supported by windows. It stores application files in a system folder. 


@cAlgo_Fanatic

cAlgo_Fanatic
20 Mar 2013, 12:03

It is in the future plans to include Range Bar charts which may have the same usability. 


@cAlgo_Fanatic

cAlgo_Fanatic
20 Mar 2013, 11:55

Please log in first and try again.


@cAlgo_Fanatic

cAlgo_Fanatic
20 Mar 2013, 11:55

cTrader Web does have this capabilities. If you are referring to the mobile version, the timeframes will be adjustable with the next release. Changing chart type is comming soon.


@cAlgo_Fanatic