Hey guys I'm have some frustrating problems and I need your help.
I have a function and I want to switch the timeframe used in the variables depending on the value of another parameter.
RangePreFetch and TrendPreFetch are the same function, just with different timeframes.
Why doesn't this work?
I have a function and I want to switch the timeframe used in the variables depending on the value of another parameter.
Inserted Code
if((MathAbs(FastTrend-SlowTrend)<RangePoint*Point) && (TFTime!=iTime(Symbol(),PERIOD_M15,1))) { RangePreFetch(); TFTime=iTime(Symbol(),PERIOD_M15,1); } if((MathAbs(FastTrend-SlowTrend)>RangePoint*Point) && (TFTime!=iTime(Symbol(),PERIOD_H1,1))) { TrendPreFetch(); TFTime=iTime(Symbol(),PERIOD_H1,1); }
RangePreFetch and TrendPreFetch are the same function, just with different timeframes.
Why doesn't this work?