cool_dude:
Hi All,
I came across this Fisher indicator recently, however it does not work like a typical indicator. When I add it to a chart, it looks different as from the backtest. Any idea how to get them to line up properly and how to call this indicator properly in iCustom?
Not all Indicators work correctly in the Strategy Tester, see here: https://www.mql5.com/en/forum/143310/page2#753302
You should replace Highest and Lowest they are obsolete functions.
iCustom, read here: Detailed explanation of iCustom - MQL4 forum
- The indicator repaints. It uses future values on previous bars
for(int i=0; i<limit; i++){ : Value = 0.33*2*((price-MinL)/(MaxH-MinL)-0.5) + 0.67*Value1; <-- Value from bar 0 used in bar 1 : Value1=Value;
Always count down. - Contradictory information on IndicatorCounted() - MQL4 forum
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi All,
I came across this Fisher indicator recently, however it does not work like a typical indicator. When I add it to a chart, it looks different as from the backtest. Any idea how to get them to line up properly and how to call this indicator properly in iCustom? The funny thing about this indicator is that when I click to edit its properties (on the backtest indicator window) and without making any changes if I press OK, it reverts to the lower indicator pattern. Very odd.
Here is the code ...
Thx