?? auto analysis closing price reversal.afl
字號:
//------------------------------------------------------------------------------
//
// Formula Name: Auto Analysis Closing Price Reversal
// Author/Uploader: Larry Lovrencic
// E-mail: lvl@firstpacific.net
// Date/Time Added: 2001-09-04 01:54:33
// Origin:
// Keywords: closing price reversal
// Level: basic
// Flags: exploration
// Formula URL: http://www.amibroker.com/library/formula.php?id=111
// Details URL: http://www.amibroker.com/library/detail.php?id=111
//
//------------------------------------------------------------------------------
//
// Find Closing Price Reversals using automatic analysis
//
//------------------------------------------------------------------------------
/*Closing Price Reversals Automatic Analysis
by Larry Lovrencic*/
buy=O<(L+0.2*(H-L)) AND C>(H-0.2*(H-L)) AND H<ref(H,-1) AND L<ref(L,-1) AND C>ref(C,-1);
sell=O>(L+0.8*(H-L)) AND C<(H-0.8*(H-L)) AND H>ref(H,-1) AND L>ref(L,-1) AND C<ref(C,-1);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -