Your question is too vague.
fly7680: How to fix, in the iCCI() the value Min/Max?
| The iCCI - Technical Indicators - MQL4 Reference returns a double, there is no min/max. Your question makes no sense. |
fly7680:
This value blok Minimo fissato and Massimo fissato
Put a tick in each box and type the value you want.
If you mean using code, open the standard CCI indicator in MetaEditor and add the following lines at the top:
#property indicator_maximum 150
#property indicator_minimum -150
#property indicator_minimum -150
or in OnInit()
IndicatorSetDouble(INDICATOR_MAXIMUM, 150);
IndicatorSetDouble(INDICATOR_MINIMUM,-150);
IndicatorSetDouble(INDICATOR_MINIMUM,-150);
Thank you very much, it was what I was looking for!

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
Hello,
How to fix, in the iCCI() the value Min/Max?
Example scale value:150 and - 150.
Thanks