PureBytes Links
Trading Reference Links
|
I am stuck.. I am testing a true range volatilty breakout ..I want to buy
on the open +- my range breakout and get out the next day on the open
..basically buy today + or - the range breakout and sell tomorrow at the
open(vice versa for shorts)..thanks
here is the beginning of the ela
Input: lkbk(5), Ent(.65);
{Long Entries}
Buy at Open[tomorrow] + Ent*AvgTrueRange(lkbk) stop;
{Short Entries}
Sell at Open[tomorrow] - Ent*AvgTrueRange(lkbk) stop;
|