I'm fairly confident in how I entered everything into Strategy Builder, but looking at the strategy analyzer it does not appear to be correct.
As a minimum working example, say I want to enter short after a bullish candle and current price falls below open of previous bullish candle. I would assume the proper C# would be:
if ((Close[1] > Open[1]) && (CrossBelow(Close, Open, 1)))
Any guidance would be greatly appreciated!


Comment