Topics
Replies
Spotware
12 Jun 2015, 12:44
Dear Traders,
Currently the enum parameters are not supported.
We plan to support them in the future. Please vote for this idea: http://vote.spotware.com/forums/229166-ideas-and-suggestions-for-ctrader-and-calgo/suggestions/5502949-custom-parameters
@Spotware
Spotware
12 Jun 2015, 12:40
Dear Trader,
RefreshData() method updates MarketSeries, Positions, PendingOrders, History, etc. It does not refresh just specific data series. With synchronous trade operation methods the RefreshData() is called automatically. When you want to call this method manually you just insert this line to your code.
RefreshData();
@Spotware
Spotware
12 Jun 2015, 12:30
Dear Trader,
Thank you for your suggestion. We will consider it. Additionally you can post your ideas/suggestions to http://vote.spotware.com/
@Spotware
Spotware
12 Jun 2015, 12:28
Dear Trader,
MarketDepth.Updated event is raised when MarketDepth is changed. MarketDepth is changed on every tick as well. So you do not need to use Calculate method when you use MarketDepth.
In order to fill IndicatorDataSeries you need to set values by indexes.
For example:
Result[index] = (MarketSeries.Close[index] - lowestlow) / (highesthigh - lowestlow) * 100;
@Spotware
Spotware
11 Jun 2015, 17:49
Dear Trader,
You can use the Timer object in your Code. An example of using the Time object is given at the references of API Section: /api/reference/internals/algo/ontimer-2995
@Spotware
Spotware
11 Jun 2015, 17:45
Dear Trader,
Currently the advanced take profits and stop losses are not included in the QuickTrade execution settings. We will consider to include them there. Additionally you can post your ideas/suggestions to http://vote.spotware.com/.
Regarding your question about an Indicator/cBot we would like to inform you that many users upload their Indicators/cBots in our Website. You can search for an indicator or cBot that suits you. You can also contact one of our Partners to create an indicator or a cBot for you or post a job in Development Jobs section. We hope you can find a cBot/Indicator that suits you.
@Spotware
Spotware
11 Jun 2015, 14:33
Dear Trader,
We do not provide coding assistance services. We more than glad to assist you with specific questions about cAlgo.API. You also can contact one of our Partners or post a job in Development Jobs section for further coding assistance.
@Spotware
Spotware
11 Jun 2015, 14:29
Dear Trader,
Thank you for your suggestion. We will consider it. Additionally you can post your ideas/suggestions to http://vote.spotware.com/
@Spotware
Spotware
12 Jun 2015, 12:51
Dear Trader,
Currently there is only one Timer object in cAlgo.API. We will consider providing users the ability to use multiple timers.
@Spotware