? Back to Help Center

?? Community Swan Dashboard & P2P Network Guide

?? Collective Intelligence for Ethical Investing

Vision: Together we create a world where every investment makes a positive difference � for both people and the planet.

Revolutionary peer-to-peer network for collaborative ethical investment intelligence with decentralized ESG validation and community-driven Swan Score enhancement.

?? P2P Network

Decentralized community validation of ESG data and ethical investment criteria

?? Global Community

Worldwide network of ethical investors sharing insights and validation

?? Collaborative Validation

Crowd-sourced verification of company sustainability and ethics claims

?? Real-time Insights

Live community sentiment and ethical assessment updates

?? AI + Human Intelligence

Combining automated ESG scoring with human ethical judgment

?? Privacy-First

Secure, anonymous participation while maintaining data integrity

"A key criterion for me is that the company is good for humanity"

This philosophy drives our Community Swan Dashboard - a platform where investors collaborate to ensure that financial returns align with positive human impact. Through collective intelligence, we validate and enhance ESG scoring beyond what any individual or algorithm could achieve alone.

? New Features: Interactive Analysis & Contribution

The Community Swan Dashboard has been upgraded with powerful interactive tools designed to streamline your research and contribution workflow.

??? Maximized Panels

Every major panel (Leaderboard, Database, Research) now features a Maximize button. Click it to expand the view to full screen, allowing you to see more columns and rows without scrolling. Click the backdrop or the button again to restore.

??? Live Voting System

Found a great ethical stock? Submit it via the Community Database panel. Use the Up/Down vote arrows to signal quality. All stats update in real-time across the platform.

?? Ticker Contribution

Help us grow! Use the "Contribute Ticker" button to add missing ethically aligned companies to our database. New submissions appear instantly in the "Recent" tab.

??? Community Swan Dashboard Architecture

?? P2P Network Layer

WebRTC connections, distributed consensus, real-time data synchronization

?? Intelligence Engine

AI-assisted validation, sentiment analysis, community scoring algorithms

?? Data Aggregation

Multi-source ESG data fusion with community validation overlay

?? Swan Score Enhancement

Community-validated ethical investment scoring with human insight

?? Peer-to-Peer Network Components

?? Decentralized Architecture

The Community Swan Dashboard operates on a peer-to-peer network architecture that enables direct collaboration between ethical investors without central authority control.

?? WebRTC Data Channels

  • Real-time Communication: Direct browser-to-browser ESG data sharing
  • Low Latency: Instant updates on company ethical assessments
  • Bandwidth Efficient: Optimized for global community participation
  • Secure: End-to-end encrypted community validation
? // Show code example click to expand
// P2P Network Configuration Example const swanP2PConfig = { iceServers: [ { urls: 'stun:stun.swan-community.org:3478' }, { urls: 'turn:turn.swan-community.org:3478', username: 'swan-user', credential: 'secure-key' } ], dataChannels: { esgValidation: { ordered: true }, communityScore: { ordered: false, maxRetransmits: 3 }, realTimeFeed: { ordered: false } } };

?? Distributed Consensus Engine

  • Validation Voting: Community members vote on ESG data accuracy
  • Reputation System: Track record of accurate ethical assessments
  • Weighted Consensus: More experienced validators have higher influence
  • Anti-Fraud Protection: Detect and prevent manipulation attempts

?? Privacy-Preserving Validation

  • Anonymous Participation: Validate without revealing identity
  • Zero-Knowledge Proofs: Prove validation accuracy without data exposure
  • Selective Disclosure: Share insights while protecting sensitive information
  • GDPR Compliance: Full European data protection compliance

?? Community Swan Dashboard Features

?? Global ESG Community Feed

?? In Development

1,247
Community Validators
15,382
ESG Validations
89%
Validation Accuracy
342
Companies Analyzed

?? Collaborative ESG Validation

?? In Development

?? AI-Enhanced Community Intelligence

?? Future Enhancement

?? Community Reputation & Gamification

?? In Development

?? Market Predictions � Bull/Bear Voting

Put your market conviction on the line. Vote Bull ?? or Bear ?? on any ticker and earn karma when your call is right. The Leaderboard ranks the most consistently accurate predictors using Wilson Score � a statistically fair measure that rewards both volume and accuracy.

???? How to Cast a Vote

  1. Type a ticker symbol (e.g. TSLA) in the prediction input field.
  2. Select your direction: ?? Bull (price goes up) or ?? Bear (price goes down).
  3. Choose your time horizon: 1 Week, 1 Month, or 3 Months.
  4. The current market price is automatically fetched and saved as the strike price for the call.
  5. Click "Cast Vote" � your prediction is live and visible to the community.

?? Wilson Score Leaderboard

The Leaderboard shows the top 20 predictors ranked by Wilson Score � not raw win-rate. A minimum of 5 settled calls is required to appear on the board.

Why not just win-rate?

Raw win-rate is misleading with small sample sizes. Consider:

  • Person A: 1 for 1 ? 100% win-rate � but statistically meaningless with a single call.
  • Person B: 47 for 60 ? 78% win-rate � consistent over many calls.

Wilson Score uses the lower bound of the 95% confidence interval of the observed win-rate. This means it inherently discounts predictions with few data points and rewards those who have proven themselves over many calls. Person B will rank higher than Person A despite the lower raw percentage � because their track record is statistically meaningful.

? Karma & Limits

?? Community Analyses & Tips

Share your research, market insights, curated ticker lists, and feedback with the whole community. Every post contributes to a growing knowledge base for ethical investors.

?? How to Post

  1. Click the "?? Post (+5?)" button in the Community Analyses panel.
  2. Select a post type: Analysis, Tip, Ticker List, or Bug Report.
  3. Enter a ticker symbol (optional for Tips and Bug Reports) and write your content.
  4. Submit � your post appears instantly in the community feed and you receive +5? karma.

?? Sharing Ticker Lists

Want to share an entire watchlist? Use the "?? Share List" button to publish a curated set of tickers from your watchlist directly to the community as a single Ticker List post. Great for sharing themed or thematic screens (e.g. "Top 10 Clean Energy Picks").

?? Filtering & Engagement

?? Integration with Swan Score System

Data Flow Integration

?? Community Input Layer

P2P network collects community ESG validations and insights

?? AI Validation Engine

Automated quality control and consensus building

?? Data Aggregation Layer

Combine community data with official ESG sources

?? Enhanced Swan Score

Community-validated ethical investment scoring

?? Swan Score Enhancement Process

  1. Base Score Generation: Traditional ESG APIs provide foundation data
  2. Community Validation: P2P network validates and enhances base scores
  3. Consensus Building: Weighted community input creates validated scores
  4. Continuous Updating: Real-time community insights update Swan Scores
  5. Quality Assurance: Multi-layer validation ensures accuracy and integrity

?? Development Roadmap

???

Phase 1: Foundation Infrastructure

?? Current Phase

Basic P2P network setup, WebRTC implementation, initial dashboard UI, and core validation mechanisms.

??

Phase 2: Community Onboarding

?? Q1 2026

Beta community launch, validator recruitment, reputation system implementation, and initial ESG validation campaigns.

??

Phase 3: AI Integration

?? Q2 2026

AI-enhanced validation, sentiment analysis, predictive ESG scoring, and automated quality control systems.

??

Phase 4: Global Expansion

?? Q3-Q4 2026

Multi-language support, regional ESG standards, global partnerships, and enterprise integration capabilities.

??? Technical Implementation

?? Technology Stack

? // Show code example click to expand
// Community Swan Dashboard Initialization class CommunitySwanDashboard { constructor() { this.p2pNetwork = new SwanP2PNetwork(); this.validationEngine = new CommunityValidationEngine(); this.realtimeFeed = new CommunityFeed(); this.consensusManager = new DistributedConsensus(); } async initialize() { // Initialize P2P connections await this.p2pNetwork.connect(); // Start community feed this.realtimeFeed.startListening(); // Join validation network await this.validationEngine.joinNetwork(); console.log('?? Community Swan Dashboard initialized - Ready for collaborative ESG validation'); } }

?? Privacy & Security

?? Privacy-First Design

The Community Swan Dashboard is built with privacy as a fundamental principle:

??? Security Measures

?? Benefits for Ethical Investors

?? Higher Accuracy

Community validation improves ESG score accuracy beyond automated systems

?? Global Perspective

Access insights from investors worldwide with diverse cultural and regional knowledge

? Real-time Updates

Get instant notifications about ESG developments and community assessments

??� Collective Intelligence

Benefit from the combined knowledge and experience of thousands of ethical investors

?? Getting Started

? Development Status

The Community Swan Dashboard is currently in active development. While the core Swan Score system is operational, the P2P community features are being built and will be released in phases throughout 2026.

  1. Access Current Features: Use the ?? Community Swan tab to see the dashboard foundation
  2. Configure Swan Score APIs: Set up data sources using the API Configuration Guide
  3. Join Beta Testing: Sign up for early access to community features (coming Q1 2026)
  4. Follow Development: Track progress through Help Center updates and release notes

?? Community & Support

?? Join the Ethical Investment Revolution

The Community Swan Dashboard represents the future of ethical investing - where individual values combine with collective intelligence to create a more sustainable and equitable financial system.

Together, we're building a world where every investment decision contributes to the betterment of humanity.

?? Visit Community Swan Dashboard