Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
small formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CelestialCrafter committed Dec 7, 2023
1 parent 3e62073 commit f3e20ce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion algorithms/bollinger_bands.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import matplotlib.pyplot as plt
import plots.colors as colors


def algorithm(prices, window_size=(20, 'days'), standard_deviations=2):
periods = get_periods(*window_size)

Expand Down
1 change: 0 additions & 1 deletion algorithms/custom_bollinger_rsi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from algorithms.rsi import plot as rsi_plot
from algorithms.bollinger_bands import plot as bollinger_bands_plot


def algorithm(prices, window_size_rsi=(13, 'days'), window_size_bollinger_bands=(1, 'month')):
bb_data = bollinger_bands(prices, window_size=window_size_bollinger_bands)
rsi_line = rsi(prices, window_size=window_size_rsi)
Expand Down

0 comments on commit f3e20ce

Please sign in to comment.