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

Commit

Permalink
fixed imports for colors
Browse files Browse the repository at this point in the history
  • Loading branch information
CelestialCrafter committed Oct 4, 2023
1 parent 77290a6 commit d38577b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plots/bollinger_bands.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import matplotlib.pyplot as plt
from algorithms.bollinger_bands import algorithm as boillinger_bands
import colors
import plots.colors as colors

def plot(prices):
upper_band, lower_band, middle_band = boillinger_bands(prices)
Expand Down
2 changes: 1 addition & 1 deletion plots/bot_net_worth.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np
import matplotlib.pyplot as plt
import colors
import plots.colors as colors

def plot(bot_profit):
bot_profit = np.array(bot_profit)
Expand Down
2 changes: 1 addition & 1 deletion plots/macd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import matplotlib.pyplot as plt
from algorithms.macd import algorithm as macd
import colors
import plots.colors as colors

def plot(prices):
macd_line, signal_line = macd(prices)
Expand Down
2 changes: 1 addition & 1 deletion plots/rsi.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np
import matplotlib.pyplot as plt
from algorithms.rsi import algorithm as rsi
import colors
import plots.colors as colors

def plot(prices):
rsi_data = rsi(prices)
Expand Down

0 comments on commit d38577b

Please sign in to comment.