Pls!
m trying to make a scalper EA attached to a 1m CHART to filter trades using a trend signal from 15m chart of the same Symbol.
below is the code I have but it doesn't seem to be working
my coding is really rusty, if u can .pls assist/
d filtering indicator is Supertrend
m trying to make a scalper EA attached to a 1m CHART to filter trades using a trend signal from 15m chart of the same Symbol.
below is the code I have but it doesn't seem to be working
Inserted Code
bool bullish()
{
if (iCustom(Symbol(),PERIOD_M15,"SuperTrend",10,1.7,0,0))
return(true);
return (false);
} d filtering indicator is Supertrend
Attached File(s)