Download the PHP package reccur/candlestick without Composer
On this page you can find all versions of the php package reccur/candlestick. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download reccur/candlestick
More information about reccur/candlestick
Files in reccur/candlestick
Package candlestick
Short Description Analyzes different trends and patterns in a candlestick chart
License MIT
Informations about the package candlestick
Candlestick
Candlestick is a laravel package that helps to analyze various patterns, structures and trends in candlesticks
Features
- Use it with Facade or as a library
- Change various thresholds and multipliers in config/candlestick.php file
- Includes patterns for single candle, dual candles and triple candles
Detectable Patterns
Single Candle Patterns
- DOJI
- MARUBOZU
- CLOSING_MARUBOZU
- OPENING_MARUBOZU
- HAMMER_OR_HANGING_MAN
- INVERTED_HAMMER_OR_SHOOTING_STAR
- DRAGONFLY_DOJI
- GRAVESTONE_DOJI
- SPINNING_TOP
Dual Candle Patterns
- BULLISH_KICKER
- BEARISH_KICKER
- BULLISH_ENGULFING
- BEARISH_ENGULFING
- BULLISH_HARAMI
- BEARISH_HARAMI
- BEARISH_HARAMI
- PIERCING_LINE
- DARK_CLOUD_COVER
- TWEEZER_BOTTOM
- TWEEZER_TOP
Triple Candle Patterns
- MORNING_STAR
- EVENING_STAR
- THREE_WHITE_SOLDIERS
- THREE_BLACK_CROWS
- THREE_OUTSIDE_UP
- THREE_OUTSIDE_DOWN
- THREE_INSIDE_UP
- THREE_INSIDE_DOWN
- DARK_CLOUD_COVER_CONFIRMED
Installing Candlestick
The recommended way to install Candlestick is through Composer.
Laravel without auto-discovery:
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
If you want to use the facade, add this to your facades in app.php:
Config
Copy the package config to your local config with the publish command:
You may change the following settings in the published config/candlestick.php file
Usage
Single Candlestick
Or use laravel Method Chaining
Getters
Getter | Method |
---|---|
Date | ->date() |
Open | ->o() |
High | ->h() |
Low | ->l() |
Close | ->c() |
Volume | ->volume() |
Color | ->color() |
Upper Wick (%) | ->upper_wick() |
Body (%) | ->body() |
Lower Wick (%) | ->lower_wick() |
Wicks (%) | ->wicks() |
Pattern | ->pattern() |
Dual Candlesticks
Triple Candlesticks
License
Candlestick is made available under the MIT License (MIT). Please see License File for more information.