Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Join our fan page
You liked the script? Try it in the MetaTrader 5 terminal
- Views:
- 6698
- Rating:
- Published:
- 2019.01.02 14:29
- Updated:
- 2019.01.28 07:19
-
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
The Wave Segregation Index (WSI) oscillator is based on the ratio of two indicators: ADX and CCI. It is displayed as a colored histogram.
It has two adjustable parameters:
- CCI period - CCI calculation period
- ADX period - ADX calculation period
Calculations:
WSI = (CCI * PriceTypical * ADX) / 1000.0
where:
CCI = CCI(PRICE_TYPICAL, CCI period)
ADX = ADX(ADX period)
PriceTypical = (High+Low+Close)/3
Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/23017