PureBytes Links
Trading Reference Links
|
I suggest "Powerscan", it will speed up your learning curve. This
took me about 19 seconds to create with Powerscan. I used a 20 day
ma, you can substitute.
Regards
Jim
/* Create date: 20 Aug 2003
The Simple MA (Short) of the current bar is greater than the Simple
MA (Short) of 1 bar ago */
Buy = MA( Close, 20 ) > Ref( MA( Close, 20 ), -1 );
--- In amibroker@xxxxxxxxxxxxxxx, "Adrian Zaremba" <headcutter@xxxx>
wrote:
> I want to buy when the value of my MA is higher then the value of
> the MA one bar ago. I think I am using the wrong code. How should I
> write this? Thanks
>
> Buy = LastValue(MA(Close, X)) < MA(Close, X);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|