I'm working on my first strategy and am coming up with a lot of CS1525 error codes.
if (Close[0] > Open[0] && (Open[0] - Low[0]) >= (Close[0] - Open[0]) * wickMultiplier && (High[0] - Close[0])<= (High[0] - Low[0])* bodyPercentage)
&& (High[0] >= pp - near * TickSize && High[0] <= pp + near * TickSize )
EnterLong();
Where can I to learn how to break this up into method statements? I tried following a couple of the NinjaScript manual examples but they don't seem to work and I'm not sure if I am even putting them in the right section.
Thanks,
Gennaker

Comment