acedanger / Entry and exit signals for stock position
0 gustos
0 bifurcaciones
2 archivos
Última actividad 2 months ago
Entry and exit signals with a sample (generic) python script
For entering positions, I'd focus on a combination of these technical indicators:
For Entry Signals:
- Moving Average Crossovers - When a shorter-term MA (like 20-day) crosses above a longer-term MA (like 50-day), it can signal upward momentum
- RSI (Relative Strength Index) - Looking for oversold conditions (RSI below 30) that might indicate a bounce opportunity
- MACD - When the MACD line crosses above the signal line, especially after being in negative territory
- Volume confirmation - Ensuring any breakout or signal is accompanied by higher-than-average volume
- Support and Resistance levels - Entering near strong support levels or after a clean breakout above resistance
acedanger / import-github-gist-oauth.sh
0 gustos
0 bifurcaciones
1 archivos
Última actividad 6 months ago
| 1 | #!/bin/bash |
| 2 | # GitHub Gist import script using GitHub token for authentication |
| 3 | # This script works by first logging in via GitHub OAuth and then importing |
| 4 | |
| 5 | github_user=acedanger |
| 6 | opengist_url="https://gist.ptrwd.com" |
| 7 | |
| 8 | echo "This script requires you to first log in to OpenGist via GitHub OAuth." |
| 9 | echo "Please visit: $opengist_url" |
| 10 | echo "Log in with your GitHub account, then return here and press Enter to continue..." |
Siguiente
Anterior