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

Re: GEN: SC Easy Language in "QuickEditor" format


  • To: RealTraders Discussion Group <realtraders@xxxxxxxxxxxxxx>
  • Subject: Re: GEN: SC Easy Language in "QuickEditor" format
  • From: "Bob Young" <polaris3@xxxxxxxxxxxxxxx>
  • Date: Tue, 9 Sep 1997 07:46:08 -0700 (PDT)
  • In-reply-to: <3.0.1.32.19970909203750.00968910@xxxxxxxxxxxxxx>

PureBytes Links

Trading Reference Links

> Hi Fellow Traders!
> 
> May I ask for help on how to write for each of the following for
> SuperCharts ELA Showme statement:
> 
> a. Show Today's range (high-low) must be equal to or larger than the largest
>      daily range of the previos 20 trading days.

range >= maxlist(range[1],range[2],range[3].....range[19],range[20])
(crude, but it works.  I don't think you can use FOR loops in 
SC...right?)

> 
> b. Show when for Day 1, Close must be in the bottom 35% of its daily range.
> And on     Day 2, Close must be in the top 25% of its daily range

c>=h-range*.25 and c[1]<=l[1]+range[1]*.35

> c. Show when Open  gaps up to a 20 day high.

o>highest(high,20)[1]
 
> d. Show when Two succeeding inside days happens

h<h[1] and l>l[1] and h[1]<h[2] and l[1]>l[2]
 
> Thank you very much!!
>  ~Happy trading~

Same to you
Bob 
> 
> 
>