Replies

croucrou
02 Jun 2017, 01:42

To my knowledge, charts are not interactive on cTrader?

You can create a closing robot with a single string parameter, to input an id of an instance. By starting the robot, it closes the positions and stops.

If you wanted the robot not to stop, you can make another parameter and close positions by bool. If false, than close.


@croucrou

croucrou
30 May 2017, 21:06

I don't know if this helps, but after giving aan adequate label for each instance, you can though find position by label and symbol with:

var pos = Positions.Find("Label", Symbol); //Symbol optionally

check gains with:

pos.NetProfit

and close it:

ClosePosition(pos);

@croucrou

croucrou
30 May 2017, 20:05

I understand, but accessing the last bar values is possible only after initialization of the series.

The series is an array and you are refering to value from an array.


@croucrou

croucrou
30 May 2017, 15:39

You need to initialize the series, to then access last bar values.


@croucrou

croucrou
24 May 2017, 14:36

Here is how I do that:

 

Indicator:

namespace cAlgo
{
    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class tl : Indicator
    {
       [Output("Result")]
       public IndicatorDataSeries Result { get; set; }

       public override void Calculate(int index)
        {
                Result[index] = variable;            
                Print(Result[index]); //Printing variable value correctly
                Print(Result[0]); //Printing NaN

                //alternatively:
                Result[0] = variable;
                Print(Result[0]); //Printing variable value correctly
               }
    }
}

 

Bot:

namespace cAlgo
{
    [Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
    public class cBot : Robot
    {
        indicator ind;

        protected override void OnStart()
        {
            ind = Indicators.GetIndicator<indicator>();
        }

        protected override void OnTick()
        {
            Print(ind.Result[0]); //Printing NaN
        }
    }
}

 

Please help.


@croucrou

croucrou
23 Oct 2016, 18:35

Slippage is taken under consideration in the process of executing of new position.

After the position is already opened, it serves no purpose.


@croucrou

croucrou
23 Oct 2016, 13:46

ExecuteMarketOrder(TradeType tradeType, Symbol symbol, long volume, string label, double? stopLossPips, double? takeProfitPips)

 


@croucrou

croucrou
21 Oct 2016, 18:49

What I meant was, it is still not available with the platform.

You might want to contact cTrader team for the details.


@croucrou

croucrou
21 Oct 2016, 02:09

I believe, this is just in plans for now.


@croucrou

croucrou
20 Oct 2016, 21:57

It seems to be closing sell positions, when the RSI goes below the set level of 30 as has been coded.

The indicator might repaint, so it's possible not to see the exact same values after time.

Don't bother with the deal map lines, if the closing prices are correct.

The stop loss is not "built in". It does not work, because it has not been applied to the execution line.


@croucrou

croucrou
20 Oct 2016, 21:14

You are in the loop. Closed positions go back to the OnStart(); and open new ones.


@croucrou

croucrou
27 Sep 2016, 22:00

I know it seems to be obviously a value type, but I am not fluent about it and would like to make sure there is nothing I'm missing.


@croucrou

croucrou
14 Sep 2016, 01:08

Crossing above happens in a real time and closing happens on the end of the previous bar.

I assume it is the first case, so I would use Symbol Bid/Ask to discard the spread instead of daily.Close.LastValue.

You are right, to make it complete, you would need to add:

if (Symbol.Bid > ma.Result.LastValue && daily.Open.Last(0) < ma.Result.LastValue)
//buy
 
if (Symbol.Ask < ma.Result.LastValue && daily.Open.Last(0) > ma.Result.LastValue)
//sell

 


@croucrou

croucrou
13 Sep 2016, 20:24

RE:

Unless you are interested in the previous bar's close, then:

if (daily.Close.Last(1) > ma.Result.LastValue)
//buy
 
if (daily.Close.Last(1) < ma.Result.LastValue)
//sell

Assuming, that the "ma" is also based on the daily timeframe series.


@croucrou

croucrou
13 Sep 2016, 20:17

 

Can't you just write it like:

if (Symbol.Bid > ma.Result.LastValue)
//buy

if (Symbol.Ask < ma.Result.LastValue)
//sell

 


@croucrou

croucrou
13 Sep 2016, 13:39

If it looks like:

protected override void OnStop()
{
    // Put your deinitialization logic here
}

you can remove whole that section.


@croucrou

croucrou
13 Sep 2016, 13:05

It is the code that executes right before a bot stops running.


@croucrou

croucrou
11 Sep 2016, 23:46

You are right! The indicator draws itself ahead and does not repaint. In this case the last part should be changed to:

            var distanceFromUpKumo = (Symbol.Bid - ichimoku.SenkouSpanA.Last(26)) / Symbol.PipSize;
            var distanceFromDownKumo = (ichimoku.SenkouSpanA.Last(26) - Symbol.Ask) / Symbol.PipSize;


            if (positionsBuy.Length == 0 && positionsSell.Length == 0)
            {
                if (MarketSeries.Open.Last(1) <= ichimoku.SenkouSpanA.Last(27) && MarketSeries.Open.Last(1) > ichimoku.SenkouSpanB.Last(27))
                {
                    if (MarketSeries.Close.Last(1) > ichimoku.SenkouSpanA.Last(27))
                    {
                        if (distanceFromUpKumo <= 30)
                        {
                            ExecuteMarketOrder(TradeType.Buy, Symbol, Volume, "Buy", StopLossPips, TakeProfitPips);
                        }
                    }
                }

                if (MarketSeries.Open.Last(1) >= ichimoku.SenkouSpanA.Last(27) && MarketSeries.Open.Last(1) < ichimoku.SenkouSpanB.Last(27))
                {
                    if (MarketSeries.Close.Last(1) < ichimoku.SenkouSpanA.Last(27))
                    {
                        if (distanceFromDownKumo <= 30)
                        {
                            ExecuteMarketOrder(TradeType.Sell, Symbol, Volume, "Sell", StopLossPips, TakeProfitPips);
                        }
                    }
                }
            }

The Crosshair tool is essential. I was printing the values and didn't notice, why do they differ from what is on the chart. Thanks!


@croucrou

croucrou
11 Sep 2016, 20:42

Okay, it looks like only data series can be output. If creating a new one basing on the up/down conditon is not the solution, I would consider it a buggy situation.


@croucrou