can you please help me out, i have a method that search for bullishEngulfing pattern, and return a boolean series. but i cannot figure out how to use it in a strategy, which simply enter long if the pattern is found
public BoolSeries IsBullishingEngulfing
{
get { return isBullishingEngulfing; }
}
I have tried
Indicator[0].IsBullishingEngulfing())
and
IsBullishingEngulfing[0];
but none of them works.
tks

Comment