-
Notifications
You must be signed in to change notification settings - Fork 658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ploting Example Added With Data #612
Conversation
Notebook Fill For Dochian Channel Indicator
Add files via upload
CSV Data Used For Ploting
MACD Histogram With Color Gradient
Example of Ichimoku Cloud With Fill between and All Parameters
Example of Ichimoku Cloud
All Notebook Revised and Updated |
All Notebooks were Updated. Kindly Review The Changes |
I just tested and ran these notebooks locally on my pc. They demonstrate nicely how to use However, these examples will be more valuable if they included at least some indication as to where the data came from, for the various columns actually used in these examples. This indication could be as simple as including one or more markdown cells that describe either (1) where the data can be obtained, or (2) where the user can learn how to calculate the data. Alternatively, if you used your own code to obtain the columns, then perhaps include the code in the notebooks. It would be nice also to include a reference to where users can learn more about each type of indicator demonstrated here. Here are the columns used: Tenkan-sen, Kijun-sen, Chikou_Span, Senkou_Span_A, Senkou_Span_B, MACD_12_26_9, MACDh_12_26_9, MACDs_12_26_9, DCU_10_15, DCM_10_15, DCL_10_15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank You for Reviewing. I'm Updating the File With the Method To Obtain Ichimoku Cloud Technical
Formula For Dochian Channel Calculation Updated
Formula For MACD Indicator Calculation
For what security is the price data in |
It is historical data of security name'NSE:TCS'. |
@DrChandrakant Thank you. Just out of curiousity, can you explain to me why |
Single-input indicators: Dual-input indicators: |
Supertrend is a technical analysis indicator used in financial markets to identify the direction of a stock's price movement. It is a popular trend-following indicator that helps traders and investors determine whether to enter or exit a trade. The Supertrend indicator is based on the average true range (ATR) and uses two input parameters: the period and the multiplier.
The Awesome Oscillator is a popular technical indicator used by traders and analysts to identify potential buying and selling opportunities in financial markets. It is primarily used to gauge the momentum of a financial instrument and to determine the strength of a trend. Here are some ways the Awesome Oscillator can be used.
@DrChandrakant #For Calculation Dochian Channel
period = 10
df['DCU_10_15'] = df['High'].rolling(period).max()
df['DCM_10_15'] = df['Low'].rolling(period).min()
df['DCL_10_15'] = (df['DCU_10_15`] + df['DCL_10_15']) / 2 Is it possible you meant something more like this?: df['DCU_15'] = df['High'].rolling(15).max()
df['DCL_10'] = df['Low'].rolling(10).min()
df['DCM_10_15'] = (df['DCL_10'] + df['DCU_15']) / 2 Thank you for contributing these three examples to mplfinance. Ideally, I would like that the input file contain only OHLCV, and to have the indicators calculated within the example. I will do the work to make that change, however I want to be sure that I understand the formulas. Presently I feel a little confused regarding the Dochian Channel, as just described above. |
Thank You For Valuable Suggestion. I think its better to avoid confusion Dochian Channel Formula Updated
Thank you for your suggestions. I Have Revised the Code and Suggestions Adopted. Some New Indicators Added Please Take Look. |
Thank you for adding the calculations to all of the notebooks as requested above. I just realized that one notebook still does not have the calculation in it: That is the |
Suptrend Calculation Updated as an Inline Function
Thanking You, Suptrend Calculation as an inline Function Updated. |
Use Scatter addplot Color change 100SMA Line after Cross Over
Alphatrend Indicator With Inline Calculations
Feature Request: New style called binance-dark matplotlib#614
Indicator Parabolic SAR Added
Feature Update Without Color matplotlib#625
I have to ask you to remove, or undo, two of the last three commits. The Parabolic SAR is fine. It calculates Parabolic SAR from simple OHLC data (as I would like all of the examples to do), and it is consistent with the purpose of this Pull Request: to present several examples of Indicators. However the other two commits should each be their own separate PR:
The above two should not be together as one PR, but two new PRs separate from this one. I have a lot or PR's to review and test, and I hope to finish this one in the next few days. Please make the above requested changes. Thank you. |
Reverting Last Changes |
@DrChandrakant |
Please Review Notebook Work