S
STOKE

General Chat

Participants: You

C
CryptoWhale
Pro Trader
10:32 AM

BTC looking bullish on the 4h chart. I'm seeing a potential breakout above the 50-day MA.

E
ETHmaxi10:35 AM

Anyone looking at that ETH/BTC ratio? Seems like we might see some outperformance soon.

D
DegenTrader
Whale
10:40 AM

Just opened a long position on SOL. Technical indicators are strong and the ecosystem growth is impressive.

Trading chart view
Long SOL/USD × 5
T
TechAnalyst10:45 AM

Looking at the TOTAL market cap chart, we might be entering a new phase of the bull market. Keep an eye on altcoin dominance.

24,567.89
Indicators & Scripts
SMA 50
EMA 200
Bollinger Bands
Script Editor
// JavaScript Trading Script
// Simple Moving Average Crossover Strategy

function initialize() {
  // Define indicators
  this.sma1 = SMA(14);
  this.sma2 = SMA(28);
}

function onTick(data) {
  // Get current price and SMA values
  const price = data.close;
  const sma1Value = this.sma1.calculate(price);
  const sma2Value = this.sma2.calculate(price);

  // Check for crossover
  if (sma1Value > sma2Value && this.prevSma1 <= this.prevSma2) {
    // Buy signal
    return { signal: "buy", price: price };
  } else if (sma1Value < sma2Value && this.prevSma1 >= this.prevSma2) {
    // Sell signal
    return { signal: "sell", price: price };
  }

  // Store previous values
  this.prevSma1 = sma1Value;
  this.prevSma2 = sma2Value;

  return { signal: "neutral" };
}
01:28 AM AI Assistant

Hello! How can I assist you today?