Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
anilca authored Jun 30, 2016
1 parent 53dc7f7 commit 680af62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Technical anaysis library for .NET
Sample for Relative Strength Index (RSI) usage:

```C#
RSI rsi = new RSI(14);
List<Ohlc> ohlcList = new List<Ohlc>();
// fill ohlcList
rsi.Load(ohlcList);
RSISerie serie = rsi.Calculate();
RSI rsi = new RSI(14);
List<Ohlc> ohlcList = new List<Ohlc>();
// fill ohlcList
rsi.Load(ohlcList);
RSISerie serie = rsi.Calculate();
```

Library includes the following implementations:
Expand Down

0 comments on commit 680af62

Please sign in to comment.