PureBytes Links
Trading Reference Links
|
Close >= ((Range * .75) + Low) will identify the upper 25% you can't buy that
close because you or trade station will not know it untill after the fact, so
use a buy statement for the next bar, I use one like this.
If Close >= ((Range * .75) + Low) then buy high + .125 stop
Close <= ((Range * .25 ) + Low) will identify a close in the lower 25% of the
bar.
Hope this helps.
"The darkest hour in any man's life is when he sits down to plan
how to get money without earning it"
Sentinel Trading
rjbiii@xxxxxxxxx
____________________Reply Separator____________________
Subject: EL help
Author: Perthuis@xxxxxxx
Date: 8/19/98 9:54 PM
Need some EL help. I am trying to optimize a simple system that buys on the
close and sells on the open. However, I want to only buy closes that are in
the top part of the trading range. I am not sure what the percentage of range
that is. So far I have this as the system:
Input:Percent(1)
If Close>(Low+(Range*Percent))
Then Buy Close;
ExitLong Open;
Guess what? Not working! Can someone tweak this for me. Thanks
Pert
|