PureBytes Links
Trading Reference Links
|
Thanks. I'm even newer to MS coding. I'm not bad in MT and want to imitate
some if my idea from MT to MS.
Bodaire
---------
csong60 wrote:
Hi! Bodaire,
Below are the codes that may be of interest to you. A word of caution,
though ..... I am still new to MS coding so if you do find it can
be
improve further please let me know.
Best regards,
csong
===================================================
150EMA Stage 4->1->2 (Daily)
EXPLORATION NOTES
-----------------
150EMA sloping downward & making a reversal upwards and CLOSE
=>150EMA
You will see a downward 150EMA line since last 80 days which will
then
turn upwards for latest 3 days.
CALCULATION PARAMETERS
-----------------------
Periodicity: Daily
COLUMN FORMULAS
---------------
ColumnA: 150EMA
Mov(C,150,E)
ColumnB: -3days
Ref(Mov(C,150,E),-3)
ColumnC: -20days
Ref(Mov(C,150,E),-20)
ColumnD: -40days
Ref(Mov(C,150,E),-40)
ColumnE: -60days
Ref(Mov(C,150,E),-60)
ColumnF: -80days
Ref(Mov(C,150,E),-80)
FILTER SOURCE
-------------
Filter Enabled: Yes
Formula:
colA>colB
AND colB<colC
AND colC<colD
AND colD<colE
AND colE<colF
AND Cross(C,Mov(C,150,E))
===================================================
--- In equismetastock@xxxxxxxxxxxxxxx, Bodaire <bodaire88@xxxx>
wrote:
> That sounds interesting. Are there samples of the
> coding for the Explorations. I'd like to write my
> own.
>
> Bodaire
> ---------
>
> csong60 wrote:
>
> > I have done an exploration which select
> > securities that was in a
> > 150EMA downward trend BUT just moving upwards
> > with the closing price
> > crossover the 150EMA.
> >
> > My next requirement will be to gauge these
> > selected securities against
> > the base index, in this case the KLCI
> > (Malaysia's KLSE index). I guess
> > this what they called Comparative Relative
> > Strength that compares a
> > security's price change with that of a "base"
> > security.
> >
> > My question …. Is it possible to create an
> > INDICATOR to apply to each
> > of the selected securities in order to VISUALLY
> > show the Comparative
> > Relative Strength in another window?
> >
> > Thanks & best regards,
> > Csong
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/equismetastock/
To unsubscribe from this group, send an email to:equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|