⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qstick.afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  Formula Name:    QStick
//  Author/Uploader: Lee 
//  E-mail:          lee@bcgfx.com
//  Date/Time Added: 2005-01-23 14:18:13
//  Origin:          Indicator by Tushar Chande
//  Keywords:        Qstick, indicator, candles, momentum
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=419
//  Details URL:     http://www.amibroker.com/library/detail.php?id=419
//
//------------------------------------------------------------------------------
//
//  QStick from Tushar Chande. This indicator measures intraday momentum by
//
//  using the distance between the open and close of price over "n periods".
//
//  It is set at the default ( 8 ) periods that Chande suggest.
//
//------------------------------------------------------------------------------

/* QStick from Tushar Chande. This indicator measures intraday momentum by 
   using the distance between the open and close of price over "n periods".
   It is set at the default ( 8 ) periods that Chande suggest. */

MaxGraph=3;

Graph0=MA( C-O,8);

// The '0' line.
Graph1=0;
Graph1Style=5;
Graph1Style=styleNoLabel;

⌨️ 快捷键说明

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