Re: The FNC Greedy System

2301
Regarding incomplete rendering of the MT5 indicator,

I may be the only one experiencing this, but there are times when the indicator does not display fully.
In such cases, if you switch the timeframe and then switch it back, it will display correctly.
This can be somewhat frustrating.

As a workaround, please add the following to your MT5 source code:

Code: Select all

int calculated = BarsCalculated(handle);
if (calculated < totalRates) {
  Print("Not all data of handle is calculated.");
  return;
}
The variable names are somewhat generic here, but the idea is to prevent further processing if all the required data has not yet been loaded.

Re: The FNC Greedy System

2303
MrKelvin1 wrote: Wed Apr 01, 2026 5:16 am Dear Mr Funchi San,

May I know the latest version of FNC_DB_EA or anywhere can get the scheduler settings on?

As I come across a post regarding the scheduler. Thank you.
The scheduler has been discontinued. As the source code is no longer available, we are not considering reinstating it.

Re: The FNC Greedy System

2308
AssetOne wrote: Fri Apr 17, 2026 12:33 am Hello, in trying to set stoploss for ea from Ichimoku but that is not working. i have noticed other methods are working, foe example vwap time break aemafor. please help with this one for ichimoku stoploss placement. thank you For the system.
I have checked the operation on my end, and both "Near" and "Far" stop losses were set successfully. However, there were cases where the stop loss was not set when the current price and the stop loss price were too close. If you could provide the FNC_DB template, I would be able to investigate further.

Re: The FNC Greedy System

2310
AssetOne wrote: Fri Apr 17, 2026 2:10 pm Alright, please find the attached. The EA did not set sl on all 3 positions shown in the picture.
There was an issue. We apologise.

Regarding the signal indicator “FNC_Ichimoku”, there was a defect whereby signals were displayed even though none of the parameters under “Signal generation settings” had been configured. This will be addressed in due course.

As for the current issue where the SL is not being set, none of the “Signal generation settings” parameters in the “FNC_Ichimoku” signal indicator are configured.
Please set at least one condition to “true”.