PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
05 Feb 2018, 11:16

Hi henry.tsui.1222,

I don't making another indicator is way to go around this. I would consider reading and writing this value to a file.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
05 Feb 2018, 11:15

Hi emeeder1,

Thanks for posting in our forum. Could you please send us a screenshot of this behavior?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Feb 2018, 09:56

Hi jezza,

No this is not possible. If you need to aggregate all your orders in one position, you can ask your broker for a Netting account.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Feb 2018, 09:35

Hi leohermoso,

Probably your broker does not allow opening positions with this volume. Their higher limit must be lower. Contact them to find out.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
02 Feb 2018, 09:23

Hi DelTrader,

I would love to help you but I did not understand what you are trying to do. Would you please try to explain this a little bit better?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 12:08

Hi m.bister,

If you use the Daily chart then the result is correct. There is no opening time on Friday. The daily bar opens at 22:00 on Thursday, UTC time. The next opening time is at 22:00 on Sunday.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 10:56

Dear Trader,

Thanks for posting in our forum. Can you please send all the necessary information to feedback@spotware.com (PID, account number, cTID, broker) so that they can investigate this?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 10:39

Hi juangmez87,

The best way to protect and control your cBot would be to implement a licensing mechanism so that you can control you can use your cBot and how.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 09:53

Hi m.bister,

Thanks for posting in our forum. What timeframe do you use for your backtesting?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 09:43

Hi leohermoso,

This is planned for the next release of cAlgo which should be out really soon.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
01 Feb 2018, 09:37 ( Updated at: 09 Feb 2023, 11:42 )

Hi yoannes,

FYI /forum/calgo-support/11886?page=2.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
31 Jan 2018, 17:05

Hi MaRCHeW,

Yes we have plans doing this in one of the future versions.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
31 Jan 2018, 16:10

Hi Drummond,

If you provide the complete code sample then we can suggest you how to do it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
31 Jan 2018, 15:36

Hi Daniel,

The reason you get these errors is because this a feature of C# 6.0. cAlgo compiler supports features up to C# 4.0.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
31 Jan 2018, 09:53

Hi Patrick,

Thanks for letting us know. We are aware of this issue and it is going to be resolved in a future update of cTrader Web.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jan 2018, 17:14

Hi Drummond,

Well that is the value. Would you like to explain to us what you are trying to do? If you are trying to get the pip size of a difference between two prices then you should divide instead of multiplying. See below

var abcSL = (UpPatternfib382 - minLow) / Symbol.PipSize;
var abcTP = (ABCDentryPrice - minLow) / Symbol.PipSize;

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jan 2018, 17:01

Hi Drummond,

This is because you round to the 2nd decimal place. Your values begin at the 8th decimal place. Try the following

var abcSL = Math.Round((UpPatternfib382 - minLow) * Symbol.PipSize, 8);
var abcTP = Math.Round((ABCDentryPrice - minLow) * Symbol.PipSize, 8);

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jan 2018, 16:22

Hi irmscher9, 

It seems that the discrepancies are on Christmas day when usually markets are closed. Unfortunately this is not so obvious as the previous case to intervene ourserves, therefore you should contact IC Markets and let them know to check their historical data. Then if there is a problem they should contact us with instructions on how to resolve this issue.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jan 2018, 16:12

Ok thanks, didn't see your second post


@PanagiotisCharalampous

PanagiotisCharalampous
30 Jan 2018, 16:12

Hi again,

I don't think this is the one. This is for USDJPY and it is for other dates.

Best Regards,

Panagiotis


@PanagiotisCharalampous