upTrendStartBarsAgo = TrendStrength()* SwingBarLow((0, upTrendOccurence + 1, Open[0]);
should be
upTrendStartBarsAgo = TrendStrength()* SwingBarLow(0, upTrendOccurence + 1, Open[0]);
To find these (and yes, I get them a LOT) use /* & */ to comment out chunks of code and use divide-and-conquer to track down where problem is.
e.g. comment out functions one at a time. then blocks of code, etc.
BTW 1) I find that it helps to line up braces { & } in order to see where any mismatches occur.
BTW 2) there are more compile issues once you've fixed that one!
should be
To find these (and yes, I get them a LOT) use /* & */ to comment out chunks of code and use divide-and-conquer to track down where problem is.
e.g. comment out functions one at a time. then blocks of code, etc.
BTW 1) I find that it helps to line up braces { & } in order to see where any mismatches occur.
BTW 2) there are more compile issues once you've fixed that one!
To find these (and yes, I get them a LOT) use /* & */ to comment out chunks of code and use divide-and-conquer to track down where problem is.
e.g. comment out functions one at a time. then blocks of code, etc.
BTW 1) I find that it helps to line up braces { & } in order to see where any mismatches occur.
BTW 2) there are more compile issues once you've fixed that one!

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
I want to optimize the indicator for better signals.
Need help please.