Replies

PanagiotisCharalampous
01 Nov 2023, 10:35

Here is an example

        protected override void OnTick()
        {
            var DIFF = Bars.HighPrices.Last(6)-Bars.LowPrices.Last(6);
            
            Chart.DrawText("Diff", DIFF.ToString(),  Bars.OpenTimes.Last(0), Symbol.Bid, Color.Red);
               
                if (rsi.Result.LastValue < 30)
                {
                    Close(TradeType.Sell);
                    Open(TradeType.Buy);
                }
                else if (rsi.Result.LastValue > 70)
                {
                    Close(TradeType.Buy);
                    Open(TradeType.Sell);
                }
            }

@PanagiotisCharalampous

PanagiotisCharalampous
05 Apr 2023, 10:09

Hi MongolTrader,

Instead of passing a Robot object to the Init() method, try passing a TestMulti object.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisCharalampous

PanagiotisCharalampous
05 Apr 2023, 10:07

Hi Goulk

Try the following

var trade = PositionLabelID.OrderBy(x => x.EntryTime).First()

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2023, 09:39

Hi there,

You could consider using market range orders instead of limit orders. Limit orders are on the server so your check will only execute after the orders have opened positions. If you need full control, you need to run everything on your side.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2023, 09:35

Hi there,

In MT4 and JForex it's possible to create a new chart via the API and populate it with your own bars, indicators and trade visualisations.

You can't.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us

 


@PanagiotisCharalampous

PanagiotisCharalampous
02 Jan 2023, 09:31

Hi,

Is there a way to mitigate this limitation?

I am not aware of any. Regarding the crash, better send troubleshooting to the team the next time this happens.

Aieden Technologies

Need help? Join us on Telegram

Need premium support? Trade with us


@PanagiotisCharalampous

PanagiotisCharalampous
05 Oct 2022, 16:45

Hi there, 

That was always like this by design. You cannot save a default color.

Aieden Technologies

Need Help? Join us on Telegram


@PanagiotisCharalampous

PanagiotisCharalampous
05 Oct 2022, 16:43

RE: RE:

Mate,

If you haven't noticed there has been a major update of cTrader during the last months and the debugging procedure has changed. I am using cTrader for six years now and I had to get accustomed to the new process.

Aieden Technologies

Need Help? Join us on Telegram

acrigney said:

Mate as I said before I have been using Ctrade for 3 years now and had no problems with debugging till now. I am using the latest version which is 4.3.13.9323, can you post a youtube with this version?

Best Regards,

                          Alistair

 

PanagiotisChar said:

Hi Shares4Us,

Make sure your cBots/Indicators have AccessRights set to FullAccess.

Aieden Technologies

Need Help? Join us on Telegram

 

 

 


@PanagiotisCharalampous

PanagiotisCharalampous
01 Oct 2022, 10:16

Hi there,

Market hours are set by the brokers, therefore you need to contact FTMO regarding this matter.

Aieden Technologies

Need Help? Join us on Telegram

 


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 15:37

Hi yuval,

There is no built in feature for this.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 15:33

Hi acrigney,

Did you set your cBot's access rights to FullAccess?

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 14:31

Hi Thomas,

This is a known issue and we are looking into it.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 14:18

Hi Thomas,

The screenshot you sent is not related to 

When running for a while the Bollinger Bands are not updated any more, LastValue gives back an old value! Is this a known bug?

We are not able to assess if there is a problem and what it is,  unless we have some source code that reproduces the issue. 

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 12:48

Hi yuval.ein,

I mean I did not find a solution to your problem :)

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 12:30

Hi yuval.ein,

I did but did not find a solution. Maybe try asking on StackOverflow.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 12:12

Hi mindfulness,

That's expected because TradingView does not really backtest. It just post processes information by connectiing dots on prepopulated charts. So many times the results are way off.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous

PanagiotisCharalampous
29 Sep 2022, 11:45

Hi nicholas.williams757,

You need to reach out to your broker regarding your accounts.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook


@PanagiotisCharalampous