Skip to content

Commit

Permalink
Update README.md to include video overview and remove unused method
Browse files Browse the repository at this point in the history
- Added a video link for a quick overview of the Jesse framework to enhance user understanding.
- Removed the `should_cancel_entry` method from the `SMACrossover` strategy class as it was unnecessary, streamlining the code.
  • Loading branch information
saleh-mir committed Jan 4, 2025
1 parent f3b3a8c commit 5cd7f0d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Algo-trading was 😵‍💫, we made it 🤩
Jesse is an advanced crypto trading framework that aims to **simplify** **researching** and defining **YOUR OWN trading strategies** for backtesting, optimizing, and live trading.

## What is Jesse?
Watch this video to get a quick overview of Jesse:

[![Jesse Overview](https://img.youtube.com/vi/0EqN3OOqeJM/0.jpg)](https://www.youtube.com/watch?v=0EqN3OOqeJM)

## Why Jesse?
Expand Down Expand Up @@ -65,9 +67,6 @@ class SMACrossover(Strategy):
# Fast SMA below Slow SMA
return self.fast_sma < self.slow_sma

def should_cancel_entry(self) -> bool:
return False

def go_long(self):
# Open long position and use entire balance to buy
qty = utils.size_to_qty(self.balance, self.price, fee_rate=self.fee_rate)
Expand Down

0 comments on commit 5cd7f0d

Please sign in to comment.