Stock-pattern - v4.0.0 #81
BennyThadikaran
announced in
Announcements
Replies: 2 comments
-
Here is an example of some of the chart customizations available. Below is the config file for the same. {
"DATA_PATH": "/home/benny/Documents/python/eod2/src/eod2_data/daily",
"LOADER": "EODFileLoader",
"DEFAULT_TF": "daily",
"SYM_LIST": "/home/benny/Documents/python/stock-pattern/src/data.csv",
"CHART": {
"TYPE": "candle",
"STYLE": "mike",
"LINE_COLOR": "gold",
"LABEL_COLOR": "white",
"BIAS_LINE_COLOR": "lime",
"NAV_TITLE_COLOR": "snow"
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
I have updated the wiki documentation For chart configuration see Configuring Optional Chart colors and themes I have rewritten the section on backtest.py usage. See backtest usage The wiki on usage has also received minor updates and corrections: See Usage The wiki on algorithms is still pending some updates. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
New dependency - fast-csv-loader
pip install fast_csv_loader
New patterns - AB=CD bearish and BAT harmonic pattern
Improvements to trendline detection algorithm.
Backtest.py - Bug fixes, Under the hood improvments
--sym
to pass one or more symbols to backtest.--config
or-c
to pass custom configuration files.Support for chart annotations - Patterns are now labeled alphabetically with support for added context in labels.
Support for chart themes and various customizations - Add configuration for chart themes, line colors,
Chart Date (X-axis) axis is now sleeker using the
ConciseDateFormatter
Improved Chart coordinates - Chart coordinates are formatted to show OHLC and volume data.
New data structure for detected patterns
The new structure is easier and intuitive. It also shifts the burden of plotting the pattern lines to the Plotter class. Users can also roll their own implementation of Plotter class using their preferred Chart package.
Tested on Windows and Linux
Tested on intraday data from Mexc (crypto exchange), Zerodha Kite (Indian Broker)
Tested on daily EOD data from NSE (EOD2)
Documentation to updated soon 😄
Beta Was this translation helpful? Give feedback.
All reactions