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
>
>
>
|