‰PNG

   IHDR         ôxÔú   sBIT|dˆ   	pHYs  Ä  Ä•+   tEXtSoftware www.inkscape.org›î<  ,àtEXtComment 
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Models\Copytrading;
use App\Models\Settings;

class SetupCopyTrading extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'setup:copytrading';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Setup copy trading with sample data';

    /**
     * Execute the console command.
     *
     * @return int
     */
    public function handle()
    {
        $this->info('Setting up Copy Trading...');

        // Check if copytradings table exists and has data
        try {
            $copyTradingCount = Copytrading::count();

            if ($copyTradingCount == 0) {
                $this->info('Creating sample copy trading experts...');

                $traders = [
                    [
                        'name' => 'Alex Johnson',
                        'photo' => 'traders/alex-johnson.jpg',
                        'rating' => 5,
                        'followers' => 1250,
                        'equity' => 87.5,
                        'total_profit' => 125000.00,
                        'status' => 'active',
                        'description' => 'Professional forex trader with 8+ years experience. Specializes in EUR/USD and GBP/USD pairs.',
                        'win_rate' => 87,
                        'total_trades' => 2340,
                        'price' => 500.00,
                        'tag' => 'PRO',
                        'type' => 'main'
                    ],
                    [
                        'name' => 'Sarah Chen',
                        'photo' => 'traders/sarah-chen.jpg',
                        'rating' => 5,
                        'followers' => 890,
                        'equity' => 82.3,
                        'total_profit' => 98500.00,
                        'status' => 'active',
                        'description' => 'Crypto and forex expert. Known for conservative risk management and consistent profits.',
                        'win_rate' => 82,
                        'total_trades' => 1890,
                        'price' => 300.00,
                        'tag' => 'EXPERT',
                        'type' => 'main'
                    ],
                    [
                        'name' => 'Mike Rodriguez',
                        'photo' => 'traders/mike-rodriguez.jpg',
                        'rating' => 4,
                        'followers' => 654,
                        'equity' => 79.1,
                        'total_profit' => 67800.00,
                        'status' => 'active',
                        'description' => 'Day trader focusing on high volatility pairs. Great for short-term gains.',
                        'win_rate' => 79,
                        'total_trades' => 1567,
                        'price' => 250.00,
                        'tag' => 'FAST',
                        'type' => 'main'
                    ],
                    [
                        'name' => 'Emma Williams',
                        'photo' => 'traders/emma-williams.jpg',
                        'rating' => 5,
                        'followers' => 1100,
                        'equity' => 85.7,
                        'total_profit' => 156700.00,
                        'status' => 'active',
                        'description' => 'Long-term strategy expert. Perfect for steady, sustainable growth.',
                        'win_rate' => 85,
                        'total_trades' => 2100,
                        'price' => 400.00,
                        'tag' => 'STABLE',
                        'type' => 'main'
                    ],
                    [
                        'name' => 'David Kim',
                        'photo' => 'traders/david-kim.jpg',
                        'rating' => 4,
                        'followers' => 567,
                        'equity' => 76.8,
                        'total_profit' => 45600.00,
                        'status' => 'active',
                        'description' => 'Scalping specialist with quick entry and exit strategies.',
                        'win_rate' => 76,
                        'total_trades' => 1234,
                        'price' => 200.00,
                        'tag' => 'SCALP',
                        'type' => 'main'
                    ],
                    [
                        'name' => 'Lisa Thompson',
                        'photo' => 'traders/lisa-thompson.jpg',
                        'rating' => 5,
                        'followers' => 934,
                        'equity' => 88.2,
                        'total_profit' => 112300.00,
                        'status' => 'active',
                        'description' => 'Gold and commodities trading expert with excellent risk management.',
                        'win_rate' => 88,
                        'total_trades' => 1876,
                        'price' => 350.00,
                        'tag' => 'GOLD',
                        'type' => 'main'
                    ]
                ];

                foreach ($traders as $trader) {
                    Copytrading::create($trader);
                }

                $this->info('âœ“ Created ' . count($traders) . ' sample traders');
            } else {
                $this->info('âœ“ Copy trading experts already exist (' . $copyTradingCount . ' traders)');
            }

            // Check settings
            $settings = Settings::first();
            if ($settings && !$settings->trade_mode) {
                $settings->update(['trade_mode' => 'on']);
                $this->info('âœ“ Enabled trade mode in settings');
            }

            $this->info('ðŸŽ‰ Copy Trading setup completed successfully!');
            $this->info('');
            $this->info('Next steps:');
            $this->info('1. Visit /user/buy-copytrading to see the copy trading plans');
            $this->info('2. Visit /user/copy-trading-dashboard to see your copy trading dashboard');
            $this->info('3. Run the AutoTaskController to generate profits automatically');

        } catch (\Exception $e) {
            $this->error('Error setting up copy trading: ' . $e->getMessage());
            return 1;
        }

        return 0;
    }
}
