Skip to content

Commit 699f986

Browse files
committed
🔁 Refactoring
1 parent 399a575 commit 699f986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Examples/Draw_Candlestick_Chart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
ohlc['SMA100'] = ohlc["Close Price"].rolling(100).mean()
3434
ohlc['SMA200'] = ohlc["Close Price"].rolling(200).mean()
3535

36-
#Plotting SMA columns
36+
# Plotting SMA columns
3737
# ax.plot(ohlc['Date'], ohlc['SMA5'], color = 'blue', label = 'SMA5')
3838
# ax.plot(ohlc['Date'], ohlc['SMA10'], color = 'blue', label = 'SMA10')
3939
# ax.plot(ohlc['Date'], ohlc['SMA20'], color = 'red', label = 'SMA20')

0 commit comments

Comments
 (0)