Skip to content

Commit

Permalink
Fix indentation in example
Browse files Browse the repository at this point in the history
  • Loading branch information
g-gundam committed Dec 17, 2024
1 parent 91119fc commit bd823de
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ using MarketData

for row in eachrow(AAPL)
c = Candle(
ts=DateTime(row.timestamp),
o=row.Open,
h=row.High,
l=row.Low,
c=row.Close,
v=row.Volume
ts=DateTime(row.timestamp),
o=row.Open,
h=row.High,
l=row.Low,
c=row.Close,
v=row.Volume
)
update!(golden_cross_chart, c)
end
Expand Down

0 comments on commit bd823de

Please sign in to comment.