Skip to main content

Manual Scalping Tools

BozoBot includes powerful manual scalping tools that allow you to execute quick trades with precise control. While the bot excels at automated trading, these manual features give you the ability to respond to market opportunities in real-time.

Key Scalping Features

Quick Sell Options

BozoBot provides pre-configured sell percentage options for fast execution:

# Scalping
SCALPING_SELL_OPTIONS=10,25,50,75,90,100

These percentage values appear as quick-access options during trading, allowing you to sell specific portions of your position with a single command.

Quick Buy Options

Similarly, you can configure quick buy amounts:

# Scalping
SCALPING_BUY_OPTIONS=0.01,0.025,0.05,0.1,0.25,0.5

These values represent SOL amounts that you can quickly deploy when you want to buy more of a token.

Using Scalping Tools

Console Interface

When BozoBot is running, it provides a console interface for manual trading. The available commands include:

  • buy [amount]: Buy a specific amount of the token
  • sell [percentage]: Sell a percentage of your current position
  • Numbered Options: Quick-access to your configured buy/sell options

Real-time Price Chart

# Visualization
SHOW_PRICE_GRAPH=true
SHOW_RSI=true

When enabled, BozoBot displays a real-time price chart in your console, helping you make informed scalping decisions. The chart includes:

  • Price movement visualization
  • Optional RSI indicator
  • Current position information
  • Profit/loss calculations

Scalping Strategies

Momentum Scalping

  1. Identify tokens with strong upward momentum
  2. Use quick buy options to enter positions
  3. Set tight take profit levels (10-25%)
  4. Use quick sell options to exit when momentum slows

Range Trading

  1. Identify tokens trading in a defined range
  2. Buy near support using quick buy options
  3. Sell near resistance using quick sell options
  4. Repeat as the token continues to range

Breakout Scalping

  1. Monitor tokens approaching resistance levels
  2. Use quick buy options when a breakout occurs
  3. Use tiered selling (e.g., 50% at first target, 50% at second target)
  4. Set a tight stop loss in case the breakout fails

Configuring for Different Trading Styles

Conservative Scalper

SCALPING_SELL_OPTIONS=5,10,25,50,75,100
SCALPING_BUY_OPTIONS=0.005,0.01,0.025,0.05,0.1

Smaller position sizes and more granular sell options for risk-averse traders.

Aggressive Scalper

SCALPING_SELL_OPTIONS=25,50,75,100
SCALPING_BUY_OPTIONS=0.05,0.1,0.25,0.5,1

Larger position sizes and fewer sell options for traders seeking higher returns.

Mixed Strategy

SCALPING_SELL_OPTIONS=10,25,33,50,66,75,90,100
SCALPING_BUY_OPTIONS=0.01,0.025,0.05,0.1,0.25

Balanced approach with more granular sell percentages for precise position management.

Best Practices for Manual Scalping

Risk Management

  1. Position Sizing: Start with smaller positions to limit risk
  2. Stop Losses: Have a mental or actual stop loss for each trade
  3. Profit Taking: Don't be afraid to take partial profits early

Technical Considerations

  1. Transaction Speed: Consider using MEV protection for critical entries/exits
  2. Slippage Settings: Adjust your slippage settings based on token liquidity
  3. Market Conditions: Be aware of overall market sentiment and volatility

Psychological Factors

  1. Discipline: Stick to your trading plan and avoid emotional decisions
  2. Patience: Wait for clear setups rather than forcing trades
  3. Record Keeping: Track your manual trades to identify patterns and improve

Advanced Techniques

Combining Manual and Automated Trading

You can use BozoBot's manual scalping tools alongside its automated features:

  1. Use automated features for entry (e.g., sniper or copy trading)
  2. Take manual control for exit strategies
  3. Set automated stop losses but manage take profits manually

Multi-Token Scalping

BozoBot allows you to manage multiple positions simultaneously:

  1. Keep the MAX_OPEN_POSITIONS parameter high enough
  2. Use the token selection feature to switch between active positions
  3. Monitor and manage each position independently

Keyboard Shortcuts

When the real-time console is active, you can use these commands:

  • Numbers (1-9) plus:: Select the corresponding quick buy/sell option
  • z [amount]: Buy a specific amount of SOL worth of the token
  • q [percentage]: Sell a specific percentage of your position

Customizing Your Scalping Interface

You can further customize your scalping experience by adjusting these parameters:

# Visualization
SHOW_PRICE_GRAPH=true # Enable/disable the price chart
SHOW_RSI=true # Show Relative Strength Index on the chart

For optimal scalping performance, consider setting:

CHECK_PRICE_INTERVAL_SECONDS=1  # More frequent price updates

This ensures you have the most current price information when making manual trading decisions.