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

Unidentified subject!



PureBytes Links

Trading Reference Links

This is the first group of ShowMe studies you can copy and paste them in to the
power editor or the quick editor if you get the right parts. Because showme and
paintbar studies allow only one plot I made a short and long out of each. I then
put them all on one chart and save that as a template, apply that template and
run my scan.

Remember these are set ups and not entries the entry always comes on the next
bar, in the direction of the trade.


{*************************************1-2-3-4's Long***************************}
 If ADX(14) > 30 and DMIPlus(14) > DMIMinus(14) and Low < Low[1] and Low[1] <=  
                                        Low[2] and Low[2] <= Low[3] or Low[2] >=
Low[3]  then begin
         plot1 (Low,"1234Long");
 
 If checkalert then alert = true;

 end;

{*****************************1-2-3-4's Short***************************}
 
 If ADX(14) >= 30 and DMIMinus(14) > DMIPlus(14) and High > High[1] and High[1]
>=                 High[2] and High[2] >= High[3] or High[2] <= High[3] then
begin
 plot1 (High,"1234Short");

 If checkalert then alert = true;

 end;

{*********************************180's
Short*****************************************}
 If  (Close[1] >= (High[1] - (Range[1] * .25))) and ( Close <= (Low + (Range *
.25))) 
  and Close < Average(Close, 50) and Close > Average(Close,10) 
  Then Begin
 Plot1 (High,"180Short");

 If CheckAlert then Alert = True;
 end;

{***************************************180'sLong*******************************
**}
 If (Close[1] <= ( Range[1] * .25 + Low[1])) and (Close[0] >= High - (Range[0] *
.25))  
  and Close > Average(Close, 10) and Close > Average(Close, 50) 
                       Then Begin
 Plot1 (Low,"180Long");
 
 If checkalert then Alert = True;
 end;

{***************************BoomersShort********************************}
 If Adx(14) > 30 and DMIMinus(14) > DMIPlus(14) and  High <= High[1] and High[1]
<                       High[2] and Low >= Low[1] and Low[1] > Low[2]
   Then Begin 
  Plot1(High,"BoomShort");

 If checkalert then alert = True;
 
 end;

{********************************BoomersLong************************************
}
 If ADX(14) > 30 and DMIPlus(14) > DMIMinus(14) and High <= High[1] and High[1]
<                          High[2] and Low >= Low[1] and Low[1] > Low[2]
    Then Begin 
  Plot1 (Low,"BoomLong");
 
 If checkalert then alert = True;

 end;

{********************ExspansionBrkOut************************}
 If CLose >= Highest(High, 40) and  Range >= Highest(Range,9)
  Then begin
 Plot1 (Low,"BrkOut"); 

 If CheckAlert then Alert = True;
       
      End;
{**********************ExspansionBrkDwn*******************************}
 If Close <= Lowest(Low,40) and Range >= Highest(Range,8)
  Then Begin
 Plot1 (High,"BrkDwn");

 If CheckAlert then Alert = True;
 
 End;

{************************ExspansionPivotsLong***********************************
}
 If  High[1] <= Average(Close, 50) and  High Crosses Above Average(Close, 50)and
                                                                                
              Range >= Highest(Range, 9) then begin 
  Plot1 (Low,"LongExpPivot");
 
 If checkalert then Alert = True;
end;

{*************************************ExspansionPivotShort**********************
}
 If Low[1] >= Average(Close, 50) and Low crosses below Average(Close, 50) 
  and  Range >= Highest(Range,9) Then Begin
   Plot1 (High,"ShortExPivot");
                                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