stock price alertif.afl

来自「一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台」· AFL 代码 · 共 34 行

AFL
34
字号
//------------------------------------------------------------------------------
//
//  Formula Name:    Stock price AlertIf
//  Author/Uploader: Anthony van Rooyen 
//  E-mail:          anthonyvan28@hotmail.com
//  Date/Time Added: 2004-07-28 12:39:53
//  Origin:          Gold Coast Australia
//  Keywords:        Name, Alertif
//  Level:           basic
//  Flags:           exploration
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=368
//  Details URL:     http://www.amibroker.com/library/detail.php?id=368
//
//------------------------------------------------------------------------------
//
//  If you want to be alerted to a stock reaching a certain price in "Alert
//  Output" under "view" in Amibroker.
//
//  Simply add the stock code, were the XYZ is.
//
//  To set the price simply add it where $$$ is.
//
//  Cut and past if you have lots of stocks that you want to be alerted to.
//
//  Then just run the scan.
//
//------------------------------------------------------------------------------


Buy = Cross(C, $$$) AND Name()=="XYZ";

AlertIf( Buy, "", "Simple text alert", 4 );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?