Skip to content

move indicator examples into indicator directory #632

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

Merged
merged 3 commits into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
396 changes: 0 additions & 396 deletions examples/Ichimoku_Cloud_Example.ipynb

This file was deleted.

453 changes: 0 additions & 453 deletions examples/Indicator_Awesome_Oscillator.ipynb

This file was deleted.

397 changes: 0 additions & 397 deletions examples/Indicator_Donchian_Channel.ipynb

This file was deleted.

449 changes: 0 additions & 449 deletions examples/Indicator_MACD_Histogram_Gradient.ipynb

This file was deleted.

492 changes: 0 additions & 492 deletions examples/Indicator_Parabolic_SAR.ipynb

This file was deleted.

491 changes: 0 additions & 491 deletions examples/Indicator_alphatrend.ipynb

This file was deleted.

491 changes: 0 additions & 491 deletions examples/Indicator_golden_cross_over.ipynb

This file was deleted.

460 changes: 0 additions & 460 deletions examples/Indicator_supertrend.ipynb

This file was deleted.

488 changes: 488 additions & 0 deletions examples/indicators/alphatrend.ipynb

Large diffs are not rendered by default.

450 changes: 450 additions & 0 deletions examples/indicators/awesome_oscillator.ipynb

Large diffs are not rendered by default.

394 changes: 394 additions & 0 deletions examples/indicators/donchian_channel.ipynb

Large diffs are not rendered by default.

487 changes: 487 additions & 0 deletions examples/indicators/golden_cross.ipynb

Large diffs are not rendered by default.

393 changes: 393 additions & 0 deletions examples/indicators/ichimoku_cloud.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/macd.py → examples/indicators/macd.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import matplotlib.dates as mdates

idf = pd.read_csv('data/SPY_20110701_20120630_Bollinger.csv',index_col=0,parse_dates=True)
idf = pd.read_csv('../data/SPY_20110701_20120630_Bollinger.csv',index_col=0,parse_dates=True)
df = idf.loc['2011-07-01':'2011-12-30',:]


Expand Down
Loading