Last active
February 4, 2023 10:00
Revisions
-
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . 1 changed file with 30 additions and 30 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,45 +6,45 @@ sns.set(style='darkgrid') df = trendet.identify_trends(equity='bbva', country='spain', from_date='01/01/2018', to_date='01/01/2019', window_size=5, trend_limit=3, labels=['A', 'B', 'C']) df.reset_index(inplace=True) with plt.style.context('paper'): plt.figure(figsize=(20, 10)) ax = sns.lineplot(x=df['Date'], y=df['Close']) values = list() value = { 'trend': 'Up Trend', 'color': 'green', } values.append(value) value = { 'trend': 'Down Trend', 'color': 'red', } values.append(value) for label in ['A', 'B', 'C']: for value in values: sns.lineplot(x=df[df[value['trend']] == label]['Date'], y=df[df[value['trend']] == label]['Close'], color=value['color']) ax.axvspan(df[df[value['trend']] == label]['Date'].iloc[0], df[df[value['trend']] == label]['Date'].iloc[-1], alpha=0.1, color=value['color']) plt.show() -
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . 1 changed file with 23 additions and 23 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,40 +9,40 @@ test = investpy.get_historical_data(equity='repsol', country='spain', from_date='01/01/2018', to_date='01/01/2019') res = identify_df_trends(df=test, column='Close') res.reset_index(inplace=True) with plt.style.context('paper'): plt.figure(figsize=(20, 10)) ax = sns.lineplot(x=res['Date'], y=res['Close']) labels = res['Up Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=res[res['Up Trend'] == label]['Date'], y=res[res['Up Trend'] == label]['Close'], color='green') ax.axvspan(res[res['Up Trend'] == label]['Date'].iloc[0], res[res['Up Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='green') labels = res['Down Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=res[res['Down Trend'] == label]['Date'], y=res[res['Down Trend'] == label]['Close'], color='red') ax.axvspan(res[res['Down Trend'] == label]['Date'].iloc[0], res[res['Down Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='red') plt.show() -
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . No changes.There are no files selected for viewing
-
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ sns.set(style='darkgrid') test = investpy.get_historical_data(equity='repsol', country='spain', from_date='01/01/2018', to_date='01/01/2019') -
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . No changes.There are no files selected for viewing
-
Álvaro Bartolomé del Canto revised this gist
Sep 16, 2019 . 3 changed files with 63 additions and 7 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,7 @@ sns.set(style='darkgrid') df = identify_all_trends(equity='bbva', country='spain', from_date='01/01/2018', to_date='01/01/2019', window_size=5) This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,48 @@ import trendet import investpy import matplotlib.pyplot as plt import seaborn as sns sns.set(style='darkgrid') test = investpy.get_historical_data(equity='repsol', country='spain', from_date='01/01/2018', to_date='01/01/2019') res = identify_df_trends(df=test, column='Close') res.reset_index(inplace=True) with plt.style.context('paper'): plt.figure(figsize=(20, 10)) ax = sns.lineplot(x=res['Date'], y=res['Close']) labels = res['Up Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=res[res['Up Trend'] == label]['Date'], y=res[res['Up Trend'] == label]['Close'], color='green') ax.axvspan(res[res['Up Trend'] == label]['Date'].iloc[0], res[res['Up Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='green') labels = res['Down Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=res[res['Down Trend'] == label]['Date'], y=res[res['Down Trend'] == label]['Close'], color='red') ax.axvspan(res[res['Down Trend'] == label]['Date'].iloc[0], res[res['Down Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='red') plt.show() This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,11 +6,12 @@ sns.set(style='darkgrid') df = trendet.identify_trends(equity='bbva', country='spain', from_date='01/01/2018', to_date='01/01/2019', window_size=5, trend_limit=3, labels=['A', 'B', 'C']) df.reset_index(inplace=True) @@ -37,7 +38,13 @@ for label in ['A', 'B', 'C']: for value in values: sns.lineplot(x=df[df[value['trend']] == label]['Date'], y=df[df[value['trend']] == label]['Close'], color=value['color']) ax.axvspan(df[df[value['trend']] == label]['Date'].iloc[0], df[df[value['trend']] == label]['Date'].iloc[-1], alpha=0.1, color=value['color']) plt.show() -
Álvaro Bartolomé del Canto revised this gist
Aug 23, 2019 . 2 changed files with 44 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ import trendet import matplotlib.pyplot as plt import seaborn as sns sns.set(style='darkgrid') df = identify_all_trends(equity='bbva', from_date='01/01/2018', to_date='01/01/2019', window_size=5) df.reset_index(inplace=True) with plt.style.context('paper'): plt.figure(figsize=(20, 10)) ax = sns.lineplot(x=df['Date'], y=df['Close']) labels = df['Up Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=df[df['Up Trend'] == label]['Date'], y=df[df['Up Trend'] == label]['Close'], color='green') ax.axvspan(df[df['Up Trend'] == label]['Date'].iloc[0], df[df['Up Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='green') labels = df['Down Trend'].dropna().unique().tolist() for label in labels: sns.lineplot(x=df[df['Down Trend'] == label]['Date'], y=df[df['Down Trend'] == label]['Close'], color='red') ax.axvspan(df[df['Down Trend'] == label]['Date'].iloc[0], df[df['Down Trend'] == label]['Date'].iloc[-1], alpha=0.2, color='red') plt.show() File renamed without changes. -
Álvaro Bartolomé del Canto revised this gist
Aug 22, 2019 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,11 +6,11 @@ sns.set(style='darkgrid') df = trendet.identify_trends(equity='bbva', from_date='01/01/2018', to_date='01/01/2019', window_size=5, trend_limit=3, labels=['A', 'B', 'C']) df.reset_index(inplace=True) -
Álvaro Bartolomé del Canto created this gist
Aug 22, 2019 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,43 @@ import trendet import matplotlib.pyplot as plt import seaborn as sns sns.set(style='darkgrid') df = trendet.identify_trends(equity='bbva', from_date='01/01/2018', to_date='01/01/2019', window_size=5, trend_limit=3, labels=['A', 'B', 'C']) df.reset_index(inplace=True) with plt.style.context('paper'): plt.figure(figsize=(20, 10)) ax = sns.lineplot(x=df['Date'], y=df['Close']) values = list() value = { 'trend': 'Up Trend', 'color': 'green', } values.append(value) value = { 'trend': 'Down Trend', 'color': 'red', } values.append(value) for label in ['A', 'B', 'C']: for value in values: sns.lineplot(x=df[df[value['trend']] == label]['Date'], y=df[df[value['trend']] == label]['Close'], color=value['color']) ax.axvspan(df[df[value['trend']] == label]['Date'].iloc[0], df[df[value['trend']] == label]['Date'].iloc[-1], alpha=0.1, color=value['color']) plt.show()