T
Trendman
Guest
def averageType = AverageType.Exponential;
def exitPrice = ExpAverage(TrueRange(high, low, close), length);
AddOrder(OrderType.BUY_TO_CLOSE, EntryPrice() + exitPrice);
This is not giving me the expected results. I added a label to view the ATR. The ATR displays $4.16 and the 2 * ATR displays at $8.80. I see why my expected results are different, owever I can not find out why 2 * ATR is different than the ATR? HELP!
Thanks
Frank
def exitPrice = ExpAverage(TrueRange(high, low, close), length);
AddOrder(OrderType.BUY_TO_CLOSE, EntryPrice() + exitPrice);
This is not giving me the expected results. I added a label to view the ATR. The ATR displays $4.16 and the 2 * ATR displays at $8.80. I see why my expected results are different, owever I can not find out why 2 * ATR is different than the ATR? HELP!
Thanks
Frank