PureBytes Links
Trading Reference Links
|
Gary thanks for the clean-up. I was running into the "EXE too large". I too
wish Dale well.
Here's a idea to follow the volatilty+Momentum+ trend catcher up to the turn.
It seems to get in well but needs a better exit strategy - I'll try your
Chandelier.
{Setup -- Three time periods, Data1,2&3 <3min, 20min,68min> on same chart
(Different colors,Candle sticks on lowest minutes). Use
Osc(linRegressSlope,16) as a trend indicator. Use (RSI/MACD Short lengths)
divergences to confirm signals.}
Input:price(c),harmonic(10){good number for the 3min};
var: mp(0);
value1=confluence(price,harmonic);
mp=marketposition;
IF Time >= 0720{Bond Session Sess1StartTime} AND Time <= Sess1EndTime then
BEGIN
{get stopped into the trade.}
If value1 <= -8 then Buy ("Long-8") H[1] stop;
{This works pretty well, catches the end of the move. Usually there are
subsequent 8 or 9 signals as the price continues to fall/rise. I would like
those signals to replace the earlier Buy/Sell L/H[1] stop. How do I do that?}
{The exits on the next entry (reverse) isn't good enough, then need your up
chandelier here?}
If value1 >= 8 then Sell ("Short+8") L[1] stop;
{then need the down chandelier here}
END;
Charlie Waring
Dallas
|