A crypto trading bot live trading on a Binance account, sending notifications to a Telegram bot.
Trade with the MACD but make sure we stay in the same direction as the long term trend. Don't trade against the trend
-
Indentify the long term trend
- If price > long term trend == uptrend
- If price < long term trend == downtrend
-
Look for crossovers from MACD that shows same signals as long term trend
- If uptrend -> Check for signals when the MACD crosses over above signal line and under zero line
- Take long position. Stoploss at nearest swing low and profit target at 1.5 x stoploss
- If downtrend -> Check for signals when the MACD crosses over below signal line and above zero line
- Take short position. Stoploss at nearest swing high and profit target 1.5 x stoploss
- If uptrend -> Check for signals when the MACD crosses over above signal line and under zero line
-
TODO: Advanced strategy -> MACD + Price Action
- Choose time frame, e.g. 4h
- Identify a key level (resistens or support) within this time frame
- Expect a double top (a 2nd touch on key level)
- Go down two time frames (2h in this case)
- Wait for crossover on MACD to confirm reversal
- Take position
Rename .env-sample
to .env
and add your values
run pip install -r requirements.txt
run python3 anna.py
Trade only trending markets...