
Topics
Replies
Spotware
12 Nov 2014, 18:01
Hello,
Thank you for your feedback.
There is a number of different chart modes. Have a look at Single-Chart Mode, Multi-Chart Mode and Free-Chart Mode. You can find these in the right toolbar of cTrader & in the tools menu on the menubar. Every mode arranges the charts in your workspace differently.
You can even detach a chart from the main window and have it working in a separate window, by dragging it with the mouse or by clicking the Detach Chart button on the upper right corner of the chart.
Hope this helped.
@Spotware
Spotware
12 Nov 2014, 09:35
We can recommend you to contact one of our Partners or post a job in Development Jobs section.
@Spotware
Spotware
11 Nov 2014, 11:48
Hello,
If you are referring to the volume currency, then no.
The volume currency always depends on the base currency of a pair. For example in EURUSD the base currency is EUR.
However, Gross and Net for every position are displayed in the currency specified when creating your account.
Hope this helped.
@Spotware
Spotware
10 Nov 2014, 09:38
Is there a way to add a timer that is only called on after login/relogin to server?
No, there is no such way.
are there other collections that may have a delay as well?
Positions and History collections do not have this issue.
Does OnStart() get called after login/relogin to server?
No, OnStart is called only once on cBot start.
So something like this would solve the problem?
if (Positions.Count(position => position.Label == RobotID) == 2 && PendingOrders.Count(position => position.Label == RobotID) == 0)
{//put a timer in here
if (PendingOrders.Count(position => position.Label == RobotID) == 0)
{
Unfortunately no. Positions and PendingOrders collections are updated independently. As a workaround you can place a pending order far away from spot prices. Then if PendingOrders.Count > 0 that will mean that PendingOrders collection is in valid state and you can check it for your other orders.
@Spotware
Spotware
13 Nov 2014, 14:26 ( Updated at: 21 Dec 2023, 09:20 )
Hello,
Thank you for your kind words!
To answer your questions:
1) It is not possible to move indicators in the back of the chart.
2) This is actually supported on the Web version of cTrader. There, you can find a Shift property when specifying a MA indicator.
This will be available on Desktop versions in future releases.
3) You can specify T/P and S/L for all trades in the Quick Trade Execution Settings (screenshot).
@Spotware