| 
 PureBytes Links 
Trading Reference Links 
 | 
> I'm trying to use Wilder's parabolic only for trailing exits for both long
> and short entries and having trouble doing so.  The problem seems to be
> that the indicator proactively creates it's own entries.  I would like to
> start the parabolic in motion only after one of my own entries, which uses
> criteria not based on the parabolic.  Does anyone know how to code this?!!
> Thanks,
> 
> Jim
> 
thats the ORIGINAL:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Input: ACCFACTR(.02);
IF CurrentBar = 1 or MarketPosition <> 1 Then Buy Parabolic(ACCFACTR) Stop;
IF CurrentBar > 1 and MarketPosition = 1 Then Sell Parabolic(ACCFACTR) Stop;
Why dont you JUST replace 
"BUY" with "EXITshort" and 
"SELL" with "EXITlong"
??
rgds hans
 
 |