PureBytes Links
Trading Reference Links
|
Gamski,
OPen a chart of any symbol, right click, choose Expert Advisor...Expert
Properties, click on Highlight tab, click new, give a suitable name (e.g
9/26 EMA crossover), paste your entire formula, choose appropriate color,
than close clicking OK buttons along the way. Any bar that fulfills the
conditions will be highlighted.
Just 1 word though - you don't want to put C<5 in the highlight function;
after all, the charts you will be looking at will hopefully be of the price
range you're wanting to trade. If you leave the C<5 in your fml, then if you
look at at charts of symbols with higher prices (e.g. GOOG), then you won't
get any highlighted bar. The C<5 is best used in an exploration to filter
out stocks based on your price preference. To create a new exploration: Just
click on Explorer, click new, give an appropriate name (e.g. Stock <5 with
9/26 EMA crossover), than paste the entire code (including C<5) in one of
the tabs (say A), in the last tab (Filter) write column A (or whichever tab
you had posted your code into), save the exploration and run it on your
favorite stock list and check out the results.
Lastly, Read the Manual! Do the tutorials!!
JD
========================
From: "glennmis2004" <gamski@xxxxxxxxxxx>
Reply-To: Metastockusers@xxxxxxxxxxxxxxx
To: Metastockusers@xxxxxxxxxxxxxxx
Subject: [Metastockusers] Cross over formula
Date: Mon, 05 Sep 2005 14:25:24 -0000
Purchased Metastock 9.1 EOD and need a little help on this cross
over formula.
Placed the formula in the filter box. Also, wanted to be able to
adjust the Periods. So anytime the 9 day expotential average crosses
the 26 day, the stock is highlighted. Also wanted to be able to
select the stocks to review. Any comments would be helpful.
My formula is listed below:
periods1 := 9;
periods2 := 26;
C<5 AND
Cross(Mov(C,periods1,E),(Mov(C,periods2,E)))
Thanks
Gamski
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
Help tsunami villages rebuild at GlobalGiving. The real work starts now.
http://us.click.yahoo.com/njNroD/KbOLAA/cosFAA/zMEolB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|