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

📄 force index.afl

📁 一个更精度的平滑涵数, 可用于股票交易系统.用于Amibroker 平台
💻 AFL
字号:
//------------------------------------------------------------------------------
//
//  Formula Name:    Force index
//  Author/Uploader: Thomas Youssef 
//  E-mail:          thomasmejl@hotmail.com
//  Date/Time Added: 2005-02-22 02:07:19
//  Origin:          
//  Keywords:        force index Alexander Elder indicator
//  Level:           basic
//  Flags:           indicator
//  Formula URL:     http://www.amibroker.com/library/formula.php?id=433
//  Details URL:     http://www.amibroker.com/library/detail.php?id=433
//
//------------------------------------------------------------------------------
//
//  Alexander Elder磗 classic force index indicator
//
//  I use them on swedish stocks, weekly.
//
//  The rules are easy:
//
//  If the indicator is below zero AND there is a bullish divergence, then go
//  LONG
//
//  If the indicator is above zero AND there is a bearish divergence, then go
//  SHORT
//
//  Works well when you have a head and shoulder or a triangular formation
//  against the zeroline.
//
//------------------------------------------------------------------------------

/*Made by Thomas Youssef, 2005-01-15

Alexander Elder磗 classic force index indicator

I use them on swedish stocks, weekly.

The rules are easy:

If the indicator is below zero AND there is a bullish divergence, then go LONG
If the indicator is above zero AND there is a bearish divergence, then go SHORT

Works well when you have a head and shoulder or a triangular formation against the zeroline.


*/

_SECTION_BEGIN("Force index");
FI=EMA(((C-Ref(C,-1))*V),13);


Plot(FI,"FI",12,5);
Plot(0,"ZERO LINE",colorWhite,styleThick);
_SECTION_END();

⌨️ 快捷键说明

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