CandlesAutoFibo – indicator MetaTrader 5
The indicator builds Fibonacci levels at candlestick High and Low, based on the timeframe specified in the indicator parameters. //+———————————————-+ //| Indicator input parameters | //+———————————————-+ input ENUM_TIMEFRAMES Timeframe=PERIOD_D1; //Indicator timeframe for calculating Fibonacci levels input uint NumberofBar=1; //Bar number for calculating Fibo levels input color FiboColor=clrGray; //Fibo color input double FiboLevel1 = 0.0; //value of Fibo … Read more