ohheycrypto


Nameohheycrypto JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/sn/ohheycrypto
SummaryA sophisticated cryptocurrency trading bot with advanced technical analysis and risk management
upload_time2025-08-11 12:19:18
maintainerNone
docs_urlNone
authorSean Nieuwoudt
requires_python>=3.11
licenseMIT License Copyright (c) 2025 Sean Nieuwoudt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords cryptocurrency trading bot binance bitcoin btc technical-analysis rsi
VCS
bugtrack_url
requirements annotated-types bandit black certifi charset-normalizer flake8 idna isort mypy numpy pre-commit psutil pydantic pydantic_core pylint pytest pytest-cov pytest-mock python-binance requests typing-inspection typing_extensions urllib3 yachalk
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This is a **crypto trading bot** that uses sophisticated technical analysis and risk management to automatically place buy and sell orders. It primarily deals with the cryptocurrency `BTC` and the fiat currency `USDT`, but you can set it to any other trading pair.

![Trading Bot Screenshot](static/screenshot.png)

### Install:

```shell
pip install ohheycrypto
```

## Features

### Core Trading Features
- **Automatic Trading**: Intelligent buy/sell decisions using technical indicators and market analysis
- **Regular Market Monitoring**: Checks the market every minute (60s) with comprehensive analysis
- **RSI Integration**: Uses Relative Strength Index to identify overbought/oversold conditions
- **Dynamic Thresholds**: Automatically adjusts buy/sell thresholds based on market volatility
- **Trailing Stop-Loss**: Protects profits with a 2% trailing stop that locks in gains
- **Multi-Timeframe Analysis**: Uses moving averages to determine market trend direction

### Risk Management
- **Smart Position Sizing**: Adjusts position size based on market volatility (50%-95% of balance)
- **Circuit Breaker**: Automatically pauses trading after 5 consecutive failed orders
- **Configuration Validation**: Ensures trading parameters are within safe ranges
- **Minimum Order Validation**: Prevents failed orders due to exchange minimums

### Enhanced Market Analysis
- **Volatility Assessment**: Calculates market volatility to optimize trading parameters
- **Trend Detection**: Identifies uptrends, downtrends, and sideways markets
- **Technical Indicators**: RSI-based entry/exit signals for better timing
- **Comprehensive Logging**: Detailed market conditions and trading decisions

## Quick Start:

```shell
# Create a configuration file
ohheycrypto init config.json

# Edit config.json and add your Binance API credentials

# Validate your configuration
ohheycrypto validate config.json

# Run the bot
ohheycrypto run config.json
```

### Configuration File:

The bot uses a JSON configuration file instead of environment variables. Use `ohheycrypto init` to create a template:

```json
{
  "binance": {
    "api_key": "YOUR_BINANCE_API_KEY",
    "api_secret": "YOUR_BINANCE_API_SECRET"
  },
  "trading": {
    "crypto": "BTC",
    "fiat": "USDT",
    "stop_loss": 3.0,
    "sell_threshold": 0.4,
    "buy_threshold": 0.2,
    "trailing_stop": 2.0,
    "position_sizing": {
      "min": 0.5,
      "max": 0.95
    }
  },
  "market_analysis": {
    "rsi_period": 14,
    "rsi_oversold": 30,
    "rsi_overbought": 70,
    "ma_short": 10,
    "ma_long": 20,
    "volatility_lookback": 20
  },
  "execution": {
    "check_interval": 60,
    "circuit_breaker": {
      "max_failures": 5,
      "cooldown": 3600
    },
    "min_order_value": 10.0
  },
  "notifications": {
    "discord_webhook": ""
  }
}
```

### Command Line Interface:

```shell
# Get help
ohheycrypto --help

# Check version
ohheycrypto --version

# Create configuration file
ohheycrypto init [config_file]

# Validate configuration
ohheycrypto validate config.json

# Run the bot
ohheycrypto run config.json

# Dry run (no actual trades)
ohheycrypto run config.json --dry-run

# Verbose logging
ohheycrypto run config.json --verbose
```

### Legacy Environment Variables (still supported):

Environment variables will override configuration file values:

```
- `BINANCE_API_KEY`: Your Binance API key  
- `BINANCE_API_SECRET`: Your Binance API secret
- `DISCORD_WEBHOOK`: Discord webhook URL for notifications
- `BOT_SL`: Stop loss percentage (as decimal, e.g., 0.03 = 3%)
- `BOT_ST`: Sell threshold percentage (as decimal, e.g., 0.004 = 0.4%)
- `BOT_BT`: Buy threshold percentage (as decimal, e.g., 0.002 = 0.2%)
- `BOT_FIAT`: Fiat currency (default: USDT)
- `BOT_CRYPTO`: Cryptocurrency (default: BTC)
```

### How the Enhanced Trading Works:

#### 1. Market Analysis Phase:

```
- RSI Calculation: Analyzes 14-day RSI to identify market momentum
- Volatility Assessment: Calculates price volatility over 30 days
- Trend Detection: Uses 10-day and 20-day moving averages to determine trend
- Dynamic Threshold Adjustment: Scales thresholds 1x-3x based on volatility
```

#### 2. Buy Decision Logic:

```
- RSI Oversold (< 30): Strong buy signal regardless of other conditions
- RSI Overbought (> 70): Prevents buying during peaks
- Trend-Based Adjustments:
  - Uptrend: More aggressive on small dips (0.7x threshold)
  - Downtrend: Wait for stronger dips (1.5x threshold)
  - Sideways: Use standard threshold
```

#### 3. Sell Decision Logic:

```
- RSI Overbought (> 70): Strong sell signal
- Trailing Stop-Loss: 2% trailing stop locks in profits automatically
- Trend-Based Adjustments:
  - Uptrend: Hold longer for bigger profits (1.5x threshold)
  - Downtrend: Take profits quicker (0.7x threshold)
```

#### 4. Risk Management:

```
- Position Sizing: Uses 50%-95% of balance based on volatility
- Circuit Breaker: Pauses trading for 1 hour after 5 failed orders
- Order Validation: Ensures minimum order sizes are met
```

## Example Trading Scenarios

### Scenario 1: Uptrend Market (RSI: 45, Trend: UP)
```
- Current Price: $50,000
- Dynamic Buy Threshold: 0.3% (1.5x base due to volatility)
- Adjusted for Uptrend: 0.21% (0.7x modifier)
- Buy Signal: When price drops to $49,895 or below
- Position Size: 80% of balance (moderate volatility)
```

### Scenario 2: Oversold Bounce (RSI: 25)
```
- Immediate Buy Signal: RSI < 30 triggers strong buy regardless of price
- Trailing Stop: Activates once in profit, follows price up
- Sell Logic: Won't sell until RSI > 30 (avoid selling during bounce)
```

### Scenario 3: High Volatility Market (Volatility: 8%)
```
- Dynamic Thresholds: 3x scaling due to high volatility
- Buy Threshold: 0.6% vs 0.2% base
- Sell Threshold: 1.2% vs 0.4% base
- Position Size: 50% of balance (maximum risk management)
```

## Performance Expectations

### Improvements vs Basic Bot:
```
- Better Entry Timing: RSI prevents buying at peaks (~15-20% improvement)
- Profit Protection: Trailing stops lock in gains (~10-15% improvement)
- Trend Following: Holds winners longer, cuts losers faster (~20-25% improvement)
- Risk Management: Variable position sizing reduces drawdowns (~10-20% improvement)
```

### Recommended Settings:
```
- Conservative: Keep default thresholds, monitor for 1-2 weeks
- Aggressive: Lower base thresholds to 0.15%/0.3%, increase trailing stop to 3%
- High Frequency: Check every 30 seconds instead of 60 seconds
```

## Deployment

### Production Installation:
```bash
# Install 
pip install ohheycrypto

# Create a config file
ohheycrypto init production_config.json

# Validate your config file
ohheycrypto validate production_config.json

# Run the bot with your config
ohheycrypto run production_config.json
```

### Development/Source Installation:
```bash
git clone https://github.com/sn/ohheycrypto
cd bot
pip install -e .
ohheycrypto init dev_config.json

# Edit config file
ohheycrypto run dev_config.json --verbose
```

### Dry Run Testing:
```bash
# Test your configuration without making actual trades
ohheycrypto run config.json --dry-run
```

## Contributing

Contributions are welcome! Areas for improvement:
- Additional technical indicators (MACD, Bollinger Bands, etc)
- Multi-pair trading support
- Backtesting framework
- Web dashboard for monitoring
- An improved Discord notification when making a profitable trades
- Saving trade data to a SQLite database locally

Please submit pull requests or open issues for discussion.

## Important Disclaimers

### Risk Warning:
- **Cryptocurrency trading is extremely risky** and can result in significant losses
- **This bot uses advanced strategies** that may increase both profits and losses  
- **Past performance does not guarantee future results**
- **Start with small amounts** to test the bot's performance

### Liability:
- **Use at your own risk** - developers are not responsible for any financial losses
- **Always do your own research** and understand the risks involved
- **Consider consulting a financial advisor** before automated trading
- **Monitor the bot regularly** - automated trading requires oversight

### Best Practices:
- **Test thoroughly** with small amounts before increasing position sizes
- **Monitor market conditions** - algorithms perform differently in various market cycles
- **Keep API keys secure** and use restricted permissions when possible
- **Have a plan** for stopping or modifying the bot during extreme market conditions

## License

This project is licensed under the MIT License - see below for details:

MIT License

Copyright (c) 2025 Sean Nieuwoudt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sn/ohheycrypto",
    "name": "ohheycrypto",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "cryptocurrency, trading, bot, binance, bitcoin, btc, technical-analysis, rsi",
    "author": "Sean Nieuwoudt",
    "author_email": "Sean Nieuwoudt <sean@underwulf.com>",
    "download_url": "https://files.pythonhosted.org/packages/d2/c3/3e68a618dfa83bef42bacf44c07e30a3e19ca99f38547fa3d7ca4a7101a2/ohheycrypto-0.2.0.tar.gz",
    "platform": null,
    "description": "This is a **crypto trading bot** that uses sophisticated technical analysis and risk management to automatically place buy and sell orders. It primarily deals with the cryptocurrency `BTC` and the fiat currency `USDT`, but you can set it to any other trading pair.\n\n![Trading Bot Screenshot](static/screenshot.png)\n\n### Install:\n\n```shell\npip install ohheycrypto\n```\n\n## Features\n\n### Core Trading Features\n- **Automatic Trading**: Intelligent buy/sell decisions using technical indicators and market analysis\n- **Regular Market Monitoring**: Checks the market every minute (60s) with comprehensive analysis\n- **RSI Integration**: Uses Relative Strength Index to identify overbought/oversold conditions\n- **Dynamic Thresholds**: Automatically adjusts buy/sell thresholds based on market volatility\n- **Trailing Stop-Loss**: Protects profits with a 2% trailing stop that locks in gains\n- **Multi-Timeframe Analysis**: Uses moving averages to determine market trend direction\n\n### Risk Management\n- **Smart Position Sizing**: Adjusts position size based on market volatility (50%-95% of balance)\n- **Circuit Breaker**: Automatically pauses trading after 5 consecutive failed orders\n- **Configuration Validation**: Ensures trading parameters are within safe ranges\n- **Minimum Order Validation**: Prevents failed orders due to exchange minimums\n\n### Enhanced Market Analysis\n- **Volatility Assessment**: Calculates market volatility to optimize trading parameters\n- **Trend Detection**: Identifies uptrends, downtrends, and sideways markets\n- **Technical Indicators**: RSI-based entry/exit signals for better timing\n- **Comprehensive Logging**: Detailed market conditions and trading decisions\n\n## Quick Start:\n\n```shell\n# Create a configuration file\nohheycrypto init config.json\n\n# Edit config.json and add your Binance API credentials\n\n# Validate your configuration\nohheycrypto validate config.json\n\n# Run the bot\nohheycrypto run config.json\n```\n\n### Configuration File:\n\nThe bot uses a JSON configuration file instead of environment variables. Use `ohheycrypto init` to create a template:\n\n```json\n{\n  \"binance\": {\n    \"api_key\": \"YOUR_BINANCE_API_KEY\",\n    \"api_secret\": \"YOUR_BINANCE_API_SECRET\"\n  },\n  \"trading\": {\n    \"crypto\": \"BTC\",\n    \"fiat\": \"USDT\",\n    \"stop_loss\": 3.0,\n    \"sell_threshold\": 0.4,\n    \"buy_threshold\": 0.2,\n    \"trailing_stop\": 2.0,\n    \"position_sizing\": {\n      \"min\": 0.5,\n      \"max\": 0.95\n    }\n  },\n  \"market_analysis\": {\n    \"rsi_period\": 14,\n    \"rsi_oversold\": 30,\n    \"rsi_overbought\": 70,\n    \"ma_short\": 10,\n    \"ma_long\": 20,\n    \"volatility_lookback\": 20\n  },\n  \"execution\": {\n    \"check_interval\": 60,\n    \"circuit_breaker\": {\n      \"max_failures\": 5,\n      \"cooldown\": 3600\n    },\n    \"min_order_value\": 10.0\n  },\n  \"notifications\": {\n    \"discord_webhook\": \"\"\n  }\n}\n```\n\n### Command Line Interface:\n\n```shell\n# Get help\nohheycrypto --help\n\n# Check version\nohheycrypto --version\n\n# Create configuration file\nohheycrypto init [config_file]\n\n# Validate configuration\nohheycrypto validate config.json\n\n# Run the bot\nohheycrypto run config.json\n\n# Dry run (no actual trades)\nohheycrypto run config.json --dry-run\n\n# Verbose logging\nohheycrypto run config.json --verbose\n```\n\n### Legacy Environment Variables (still supported):\n\nEnvironment variables will override configuration file values:\n\n```\n- `BINANCE_API_KEY`: Your Binance API key  \n- `BINANCE_API_SECRET`: Your Binance API secret\n- `DISCORD_WEBHOOK`: Discord webhook URL for notifications\n- `BOT_SL`: Stop loss percentage (as decimal, e.g., 0.03 = 3%)\n- `BOT_ST`: Sell threshold percentage (as decimal, e.g., 0.004 = 0.4%)\n- `BOT_BT`: Buy threshold percentage (as decimal, e.g., 0.002 = 0.2%)\n- `BOT_FIAT`: Fiat currency (default: USDT)\n- `BOT_CRYPTO`: Cryptocurrency (default: BTC)\n```\n\n### How the Enhanced Trading Works:\n\n#### 1. Market Analysis Phase:\n\n```\n- RSI Calculation: Analyzes 14-day RSI to identify market momentum\n- Volatility Assessment: Calculates price volatility over 30 days\n- Trend Detection: Uses 10-day and 20-day moving averages to determine trend\n- Dynamic Threshold Adjustment: Scales thresholds 1x-3x based on volatility\n```\n\n#### 2. Buy Decision Logic:\n\n```\n- RSI Oversold (< 30): Strong buy signal regardless of other conditions\n- RSI Overbought (> 70): Prevents buying during peaks\n- Trend-Based Adjustments:\n  - Uptrend: More aggressive on small dips (0.7x threshold)\n  - Downtrend: Wait for stronger dips (1.5x threshold)\n  - Sideways: Use standard threshold\n```\n\n#### 3. Sell Decision Logic:\n\n```\n- RSI Overbought (> 70): Strong sell signal\n- Trailing Stop-Loss: 2% trailing stop locks in profits automatically\n- Trend-Based Adjustments:\n  - Uptrend: Hold longer for bigger profits (1.5x threshold)\n  - Downtrend: Take profits quicker (0.7x threshold)\n```\n\n#### 4. Risk Management:\n\n```\n- Position Sizing: Uses 50%-95% of balance based on volatility\n- Circuit Breaker: Pauses trading for 1 hour after 5 failed orders\n- Order Validation: Ensures minimum order sizes are met\n```\n\n## Example Trading Scenarios\n\n### Scenario 1: Uptrend Market (RSI: 45, Trend: UP)\n```\n- Current Price: $50,000\n- Dynamic Buy Threshold: 0.3% (1.5x base due to volatility)\n- Adjusted for Uptrend: 0.21% (0.7x modifier)\n- Buy Signal: When price drops to $49,895 or below\n- Position Size: 80% of balance (moderate volatility)\n```\n\n### Scenario 2: Oversold Bounce (RSI: 25)\n```\n- Immediate Buy Signal: RSI < 30 triggers strong buy regardless of price\n- Trailing Stop: Activates once in profit, follows price up\n- Sell Logic: Won't sell until RSI > 30 (avoid selling during bounce)\n```\n\n### Scenario 3: High Volatility Market (Volatility: 8%)\n```\n- Dynamic Thresholds: 3x scaling due to high volatility\n- Buy Threshold: 0.6% vs 0.2% base\n- Sell Threshold: 1.2% vs 0.4% base\n- Position Size: 50% of balance (maximum risk management)\n```\n\n## Performance Expectations\n\n### Improvements vs Basic Bot:\n```\n- Better Entry Timing: RSI prevents buying at peaks (~15-20% improvement)\n- Profit Protection: Trailing stops lock in gains (~10-15% improvement)\n- Trend Following: Holds winners longer, cuts losers faster (~20-25% improvement)\n- Risk Management: Variable position sizing reduces drawdowns (~10-20% improvement)\n```\n\n### Recommended Settings:\n```\n- Conservative: Keep default thresholds, monitor for 1-2 weeks\n- Aggressive: Lower base thresholds to 0.15%/0.3%, increase trailing stop to 3%\n- High Frequency: Check every 30 seconds instead of 60 seconds\n```\n\n## Deployment\n\n### Production Installation:\n```bash\n# Install \npip install ohheycrypto\n\n# Create a config file\nohheycrypto init production_config.json\n\n# Validate your config file\nohheycrypto validate production_config.json\n\n# Run the bot with your config\nohheycrypto run production_config.json\n```\n\n### Development/Source Installation:\n```bash\ngit clone https://github.com/sn/ohheycrypto\ncd bot\npip install -e .\nohheycrypto init dev_config.json\n\n# Edit config file\nohheycrypto run dev_config.json --verbose\n```\n\n### Dry Run Testing:\n```bash\n# Test your configuration without making actual trades\nohheycrypto run config.json --dry-run\n```\n\n## Contributing\n\nContributions are welcome! Areas for improvement:\n- Additional technical indicators (MACD, Bollinger Bands, etc)\n- Multi-pair trading support\n- Backtesting framework\n- Web dashboard for monitoring\n- An improved Discord notification when making a profitable trades\n- Saving trade data to a SQLite database locally\n\nPlease submit pull requests or open issues for discussion.\n\n## Important Disclaimers\n\n### Risk Warning:\n- **Cryptocurrency trading is extremely risky** and can result in significant losses\n- **This bot uses advanced strategies** that may increase both profits and losses  \n- **Past performance does not guarantee future results**\n- **Start with small amounts** to test the bot's performance\n\n### Liability:\n- **Use at your own risk** - developers are not responsible for any financial losses\n- **Always do your own research** and understand the risks involved\n- **Consider consulting a financial advisor** before automated trading\n- **Monitor the bot regularly** - automated trading requires oversight\n\n### Best Practices:\n- **Test thoroughly** with small amounts before increasing position sizes\n- **Monitor market conditions** - algorithms perform differently in various market cycles\n- **Keep API keys secure** and use restricted permissions when possible\n- **Have a plan** for stopping or modifying the bot during extreme market conditions\n\n## License\n\nThis project is licensed under the MIT License - see below for details:\n\nMIT License\n\nCopyright (c) 2025 Sean Nieuwoudt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 Sean Nieuwoudt\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "A sophisticated cryptocurrency trading bot with advanced technical analysis and risk management",
    "version": "0.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/sn/ohheycrypto/issues",
        "Documentation": "https://github.com/sn/ohheycrypto#readme",
        "Homepage": "https://github.com/sn/ohheycrypto",
        "Source Code": "https://github.com/sn/ohheycrypto"
    },
    "split_keywords": [
        "cryptocurrency",
        " trading",
        " bot",
        " binance",
        " bitcoin",
        " btc",
        " technical-analysis",
        " rsi"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1d76e8590d0633c53962e9c665a5c0e9c0d3f96d0a0ab96165d7a3657a8da49",
                "md5": "c42449932e6b26ef487f0ec0eb4945dc",
                "sha256": "861d236dede798f95da590937a0f906890cc2ad99ba906ce6c1fca650827c423"
            },
            "downloads": -1,
            "filename": "ohheycrypto-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c42449932e6b26ef487f0ec0eb4945dc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 38777,
            "upload_time": "2025-08-11T12:19:17",
            "upload_time_iso_8601": "2025-08-11T12:19:17.104043Z",
            "url": "https://files.pythonhosted.org/packages/d1/d7/6e8590d0633c53962e9c665a5c0e9c0d3f96d0a0ab96165d7a3657a8da49/ohheycrypto-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2c33e68a618dfa83bef42bacf44c07e30a3e19ca99f38547fa3d7ca4a7101a2",
                "md5": "ce1186032cd1e47cba2fbf57184b2b5e",
                "sha256": "0144480376d1dca5653904b8454b767dac3514755809c288c0edc7ba1221c06e"
            },
            "downloads": -1,
            "filename": "ohheycrypto-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ce1186032cd1e47cba2fbf57184b2b5e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 37831,
            "upload_time": "2025-08-11T12:19:18",
            "upload_time_iso_8601": "2025-08-11T12:19:18.437212Z",
            "url": "https://files.pythonhosted.org/packages/d2/c3/3e68a618dfa83bef42bacf44c07e30a3e19ca99f38547fa3d7ca4a7101a2/ohheycrypto-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-11 12:19:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sn",
    "github_project": "ohheycrypto",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "annotated-types",
            "specs": [
                [
                    "==",
                    "0.7.0"
                ]
            ]
        },
        {
            "name": "bandit",
            "specs": [
                [
                    "==",
                    "1.7.10"
                ]
            ]
        },
        {
            "name": "black",
            "specs": [
                [
                    "==",
                    "24.10.0"
                ]
            ]
        },
        {
            "name": "certifi",
            "specs": [
                [
                    "==",
                    "2025.7.14"
                ]
            ]
        },
        {
            "name": "charset-normalizer",
            "specs": [
                [
                    "==",
                    "3.4.2"
                ]
            ]
        },
        {
            "name": "flake8",
            "specs": [
                [
                    "==",
                    "7.1.1"
                ]
            ]
        },
        {
            "name": "idna",
            "specs": [
                [
                    "==",
                    "3.10"
                ]
            ]
        },
        {
            "name": "isort",
            "specs": [
                [
                    "==",
                    "5.13.2"
                ]
            ]
        },
        {
            "name": "mypy",
            "specs": [
                [
                    "==",
                    "1.13.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    "==",
                    "2.3.2"
                ]
            ]
        },
        {
            "name": "pre-commit",
            "specs": [
                [
                    "==",
                    "4.0.1"
                ]
            ]
        },
        {
            "name": "psutil",
            "specs": [
                [
                    "==",
                    "6.1.1"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    "==",
                    "2.11.7"
                ]
            ]
        },
        {
            "name": "pydantic_core",
            "specs": [
                [
                    "==",
                    "2.33.2"
                ]
            ]
        },
        {
            "name": "pylint",
            "specs": [
                [
                    "==",
                    "3.3.2"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    "==",
                    "8.3.4"
                ]
            ]
        },
        {
            "name": "pytest-cov",
            "specs": [
                [
                    "==",
                    "6.0.0"
                ]
            ]
        },
        {
            "name": "pytest-mock",
            "specs": [
                [
                    "==",
                    "3.14.0"
                ]
            ]
        },
        {
            "name": "python-binance",
            "specs": [
                [
                    "==",
                    "1.0.19"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "==",
                    "2.32.4"
                ]
            ]
        },
        {
            "name": "typing-inspection",
            "specs": [
                [
                    "==",
                    "0.4.1"
                ]
            ]
        },
        {
            "name": "typing_extensions",
            "specs": [
                [
                    "==",
                    "4.14.1"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    "==",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "yachalk",
            "specs": [
                [
                    "==",
                    "0.1.5"
                ]
            ]
        }
    ],
    "lcname": "ohheycrypto"
}
        
Elapsed time: 1.19279s