[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Easy Language question on PARABOLIC SAR



PureBytes Links

Trading Reference Links

is it possible to get a trading system to ignore the first signal of the day
and only act on the second.

I have been using the parabolic SAR system and exiting the market on close.
The next day a signal is generated as a follow on from the day before rather
than a new signal during the day.

I wish to eliminate this initial signal and only act on the second signal -
How can I do this???

the system I am using is the following on 5min S&P futures:

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;

EXIT MOC

Any help would be greatly appreciated