Sounds more like a problem with your cBots. Spotware cannot control the quality of the cBot code you run. You should try to optimize them. Else share your cBot code and exact steps how someone can reproduce your problem
To receive assistance you need to share more information e.g. cBot code, optimization parameters, broker etc, so that somebody can reproduce the problem
I am using a ADMI Gaming PC: Intel i5 11400F 4.4Ghz Turbo SIX Core, RTX 3050 8GB, 16GB 3200MHz RAM, 1TB NVME SSD, Flash Case, 600MBps Wifi, Win 11
i cannot get any optimisation results other than 0 values,
i have changed every setting possible and still nothing,
i am on version 4.9.1,
i have updated drivers,
the first image backtesting works just fine, but the second is optimisation and it never works.
any help please?
Hi there,
You need to follow my suggestion above. Try clicking on pass and check the log in case there is any useful message.
To receive assistance you need to share more information e.g. cBot code, optimization parameters, broker etc, so that somebody can reproduce the problem
Your code does not check for crosses anywhere. It just checks if one average is above the other. If you want to check for crosses e.g. wwsHigh33 crosses above wwsHigh144, your condition should look like this
Maybe it is better to provide a specific example demonstrating what you are looking at, since what you write is not true
debug any indicator, you will see Calculate method only receive OLHC data when the bar is closed.
This is not how it works. Calculate is called once for every historical bar and on every tick for the current bar. If you keep executing the Calculate until the bar is closed, then the value for the current bar will become equivalent to the closed bar.
debug any cbot, you will see OnBar method will receive two tick OLHC data, first one occur when the bar is open, second one close the bar.
OnBar is called once every time a new bar is opened.
PanagiotisChar
31 Oct 2023, 07:25
Hi there,
Sounds more like a problem with your cBots. Spotware cannot control the quality of the cBot code you run. You should try to optimize them. Else share your cBot code and exact steps how someone can reproduce your problem
@PanagiotisChar