PureBytes Links
Trading Reference Links
|
Mr. Cooper defines his hit list as being made up of strongly trending stocks he
describes them as being identified by the following, which we have turned into
showme's which we use as a scan and then scan these for the other signals and
then use them as set ups not entries.
{*****************HitListLong**********************}
If ADX(14) > 35 and DMIPlus(14) >= DMIMinus(14)
Then Begin
Plot1 (Low,"HitListLong");
If CheckAlert Then alert = True;
end;
{*****************HitListShort***************************}
If Adx(14) > 35 and DMIMinus(14) >= DMIPlus(14)
Then Begin
Plot1 (High,"HitListShort");
If CheckAlert Then alert = True;
end;
"The darkest hour in any man's life is when he sits down to plan
how to get money without earning it"
Sentinel Trading
|