PureBytes Links
Trading Reference Links
|
Reading
"This week's meeting" description and thinking that some people may
rediscover America in the near future...
Thank you CS for your valuable contribution.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "CS" <csaxe@xxxx> wrote:
> Yuki,
> If scCMF(14) is an equation that can be solved for zero, it is
possible.
>
> For instance, from the Toronto MetaStock Users site is a formula
for MACD:
>
> // By Jerry G. of http://www.torontometastockusers.com
> A1=Param("Fast Period",12,2,100,1); // Short Period
> B1=Param("Slow Period",26,2,100,1); // Long Period
> T1=Param("Signal Period",9,2,100,1); // Signal Period
> X1=2/(1+A1);
> Y1=2/(1+B1);
> top=EMA(C,B1)*(1-Y1)-EMA(C,A1)*(1-X1);
>
> //Close required for trigger line crossover
> S1=(EMA(MACD(A1,B1),T1)+top)/(X1-Y1);
>
> //Close required for 0 value MACD
> S2=top/(X1-Y1);
> Plot(S1,"Close for Trigger Line Cross",3,1);
> Plot(S2,"Close for 0 Line Cross",4,1);
>
> -CS
> ----- Original Message -----
> From: Yuki Taga
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Monday, February 24, 2003 9:08 PM
> Subject: [amibroker] looking into the future
>
>
> All:
>
> I have a trend qualifier that I use with pretty decent success for
> short-term trading on some brokerage stocks. The qualifier is
really
> simple:
>
> If 2 of the 3 major brokerage stocks have scCMF(14) values greater
> than zero, the trend is up, else it is down.
>
> One of the drawbacks of any indicator with a fairly lengthy look
back
> period, of course, is that it may not do what you expect on any
one
> given day. i.e., composite stocks down sharply, but the indicator
> may actually rise slightly on that day, because of the look back
>
> So my question:
>
> It it possible, via a computer, to calculate tomorrow's value of a
> particular indicator based on hypothetical price values? (I'm
pretty
> sure this could be done, but I don't know how to do it, other
than by
> hand, which can be a very long and laborious process.) To cut to
the
> chase, would it even be possible to input a desired situation on a
> particular stock -- say, cross(0, scCMF(14)) -- and then get the
> computer (AB, preferably, via some kind of scan) to give me the
price
> action that would need to take place to achieve this situation?
>
> Yuki ^_^
>
> mailto:yukitaga@x...
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
>
> Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|