etrader808
Newbie
- Messages
- 6
- Likes
- 0
I'm using a Volatility Break out system on GBPUSD daily bars and wanted to know if anyone knows how to programe order re-entrys.
If you look at the circled bar and we assume the market opened @ 1.9246 and it moves down to trigger the SELL order of 1.9235 then rises to trigger BUY @1.9257 then drops again to close @ 1.9217. How do I get the system to re-enter SELL order @ 1.9235 on the same bar after orginal SELL order was already executed on the same bar?
I hope that makes sense.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Input: lkbk(5), Ent(.65);
Value1 = Ent * AvgTrueRange(lkbk);
{Long Entries}
Buy next bar at Open of next bar + Value1 stop;
{Short Entries}
Sell next bar at Open of next bar - Value1 stop;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
If you look at the circled bar and we assume the market opened @ 1.9246 and it moves down to trigger the SELL order of 1.9235 then rises to trigger BUY @1.9257 then drops again to close @ 1.9217. How do I get the system to re-enter SELL order @ 1.9235 on the same bar after orginal SELL order was already executed on the same bar?
I hope that makes sense.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Input: lkbk(5), Ent(.65);
Value1 = Ent * AvgTrueRange(lkbk);
{Long Entries}
Buy next bar at Open of next bar + Value1 stop;
{Short Entries}
Sell next bar at Open of next bar - Value1 stop;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////