Candlesticks

버전 1.0.0.0 (7.79 KB) 작성자: Nate Jensen
Calculates the end indices of 90 different candlestick patterns
다운로드 수: 1.4K
업데이트 날짜: 2011/11/15

라이선스 보기

Description
Since the early days of the Japanese rice traders, candlestick charting has grown into a complex technical analysis tool based primarily on patterns. Candlestick charts are flexible, because candlestick charts can be used alone or in combination with other technical analysis techniques, not instead of other technical tools. As with all charting methods, candlestick chart patterns are subject to interpretation by the user. Currently, there are 90 patterns.

Syntax
[bull bear neutral] = candlesticks(open,high,low,close)

Inputs
open - open price
high - high price
low - low price
close - close price

Outputs
bear - bearish patterns
bull - bullish patterns
neutral - neutral patterns
Outputs are formatted into cells. The index of each cell corresponds
to the index of that pattern in the order listed under Candlesticks.
Each cell holds all of the indices from the input for the end of a
pattern.
For example:
bear{1} is the Abandoned Baby pattern
[23; 78; 92] are the contents of that cell and are the indices of the
end of that pattern

Notes
- data must be column oriented
- there are no argument checks
- most patterns require a prior bullish or bearish trend; this code
does not check for that
- all patterns either require, recommend, or suggest confirmation;
this code does not check for that

Example
load disney.mat
[bull bear neutral] = candlesticks(dis_OPEN,dis_HIGH,dis_LOW,dis_CLOSE);

Version : 1.0 (11/02/2011)
Author : Nate Jensen
Created : 10/25/2011
History :
- v1.0 11/02/2011 : initial release

To Do
- add more candlesticks

The full list of candlestick patterns is located in the help section.

인용 양식

Nate Jensen (2024). Candlesticks (https://www.mathworks.com/matlabcentral/fileexchange/33782-candlesticks), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2011b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Financial Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0