Calculate = Calculate.OnBarClose;
The indicator is calculated as follows:
LinReg1 = LinReg(89);
if((GetCurrentAsk() - TickSize < KeltnerChannelEMA1.Midline[0])) {
EnterLong(Convert.ToInt32(DefaultQuantity), "");
}

Comment