if (ToTime(Time[0]) >= 93000 && ToTime(Time[0]) <= 93300)
EnterLong ();
Does the above code enter a long position 3 times or just once?
also, what is the easiest method of writing code that says....Enter a long limit order of 2 points above current price? and Enter a short position limit order of 3 points below current price? Is the below correct?
EnterLongLimit(Close[0]+2)
EnterShortLimit(Close[0]-3)
Thanks in advance

Comment