if (CrossBelow(SpanRSI[0], SpanTrigger, 1) )
{
Print(string.Format("CurrentBar {0} SpanRSI[1] {1:0} SpanRSI[0] {2:0} ", CurrentBar, SpanRSI[1], SpanRSI[0] ));
}
errors 1. overload method match for CrossBelow has invalid arguments
2. Argument 2 can not convert from double to ISeries<double>
The help manual specifies that an ISeries<double> is required as
CrossBelow(ISeries<double>series1,doublevalue,intlookBackPeriod)
What can be done to take a variable i create and subject it to CrossBelow? Thanks!

Comment