Binance Square
Pukeľ
176 Publicaciones

Pukeľ

Abrir trade
Trader ocasional
4.2 año(s)
31 Siguiendo
51 Seguidores
9 Me gusta
Publicaciones
Cartera
·
--
#Take On Multi-Track Trading Challenges and Win a Share of $3M+ in Rewards! Binance Traders League Season 3: Take On Multi-Track Trading Challenges and Win a Share of $3M+ in Rewards! https://www.binance.com/activity/trading-competition/202606tradersleague3?ref=448346863 Me referral code-448346863
#Take On Multi-Track Trading Challenges and Win a Share of $3M+ in Rewards! Binance Traders League Season 3: Take On Multi-Track Trading Challenges and Win a Share of $3M+ in Rewards! https://www.binance.com/activity/trading-competition/202606tradersleague3?ref=448346863

Me referral code-448346863
·
--
Pleas join the my team
Pleas join the my team
·
--
I'm selling my Pepe 167000 for 200 dollars, does anyone want it?😂😂😂😂
I'm selling my Pepe 167000 for 200 dollars, does anyone want it?😂😂😂😂
·
--
Pleas follow me
Pleas follow me
·
--
@heyi pleas me send redpacket😭
@Yi He pleas me send redpacket😭
Yi He
·
--
客服小何给您发了一个新年红包,点击链接立即领取!

Binance's Chief Customer Officer has sent you a New Year's digital red envelope. Click the link to claim it now.
·
--
Pleas send me red packet😭
Pleas send me red packet😭
Yi He
·
--
客服小何给您发了一个新年红包,点击链接立即领取!

Binance's Chief Customer Officer has sent you a New Year's digital red envelope. Click the link to claim it now.
·
--
Satoshi help me pleas😭😭
Satoshi help me pleas😭😭
Satoshi Nakatoto
·
--
📉 XRP/USDT Trade Alert 📉
⏰ Timeframe: 06:34 → 10:34 (UTC+01:00)
📊 Pair: XRP/USDT
🔴 Action: SELL
🔹 Entry: 1.6162
🎯 Take Profit: 1.5977
🛑 Stop Loss: 1.6393
📌 DYOR – Do Your Own Research

#XRPUSDT #signaladvisor $XRP
·
--
#BTCFellBelow$69,000Again
#BTCFellBelow$69,000Again
·
--
Satoshi send me 50$😭
Satoshi send me 50$😭
Satoshi Nakatoto
·
--
Today I received my Binance swag — really appreciate the initiative and the support for the community. Thank you, Binance! 🙌

#binanceswag #SwagBox
·
--
Does anyone want to buy my binance account?
Does anyone want to buy my binance account?
·
--
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance. 👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863 Referal code:448346863
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance.

👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863

Referal code:448346863
·
--
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance. 👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance.

👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863
·
--
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance. 👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863
#2025withBinance Start your crypto story with the @Binance Year in Review and share your highlights! #2025withBinance.

👉 Sign up with my link and get 100 USD rewards! https://www.binance.com/year-in-review/2025-with-binance?ref=448346863
·
--
Satoshi help me pleas 😭😭
Satoshi help me pleas 😭😭
Satoshi Nakatoto
·
--
VIP MARKET UPDATE: $ETH
➖➖➖➖➖➖➖
ETH is forming a bullish Alt Bat pattern. Liquidity lies below the marked low, and price may hunt that liquidity before the next bullish move.

However, if ETH reclaims the marked horizontal resistance, it would signal a bullish confirmation.
➖➖➖➖➖➖➖

#ETHAnalysis #ETHUSDT #EthereumNews
·
--
crypto free deposit 200usdimport ccxt import pandas as pd import pandas_ta as ta import matplotlib.pyplot as plt # ====== 1. Připojení k Binance ====== exchange = ccxt.binance() symbol = 'BTC/USDT' timeframe = '1h' limit = 1000 # 1000 hodin = cca 41 dnů # ====== 2. Stažení historických dat ====== ohlcv = exchange.fetch_ohlcv(symbol, timeframe=timeframe, limit=limit) df = pd.DataFrame(ohlcv, columns=['timestamp', 'open', 'high', 'low', 'close', 'volume']) df['timestamp'] = pd.to_datetime(df['timestamp'], unit='ms') # ====== 3. Výpočet indikátorů ====== df['EMA20'] = ta.ema(df['close'], length=20) df['EMA50'] = ta.ema(df['close'], length=50) df['RSI'] = ta.rsi(df['close'], length=14) # ====== 4. Generování signálů ====== def generate_signal(row): if row['EMA20'] > row['EMA50'] and row['RSI'] < 30: return 'BUY' elif row['EMA20'] < row['EMA50'] and row['RSI'] > 70: return 'SELL' else: return 'HOLD' df['signal'] = df.apply(generate_signal, axis=1) # ====== 5. Backtestování strategie ====== capital = 1000 # počáteční kapitál v USD position = None entry_price = 0 trade_results = [] stop_loss_pct = 0.02 take_profit_pct = 0.05 capital_per_trade = 200 for i in range(len(df)): price = df['close'].iloc[i] signal = df['signal'].iloc[i] if position is None and signal in ['BUY', 'SELL']: position = signal entry_price = price amount = capital_per_trade / price elif position == 'BUY': if price <= entry_price (1 - stop_loss_pct) or price >= entry_price (1 + take_profit_pct): pl = (price - entry_price) * amount trade_results.append(pl) position = None elif position == 'SELL': if price >= entry_price (1 + stop_loss_pct) or price <= entry_price (1 - take_profit_pct): pl = (entry_price - price) * amount trade_results.append(pl) position = None # ====== 6. Výsledky ====== results_df = pd.DataFrame(trade_results, columns=['P/L_USD']) results_df['cum_profit'] = results_df['P/L_USD'].cumsum() print("📊 Počet obchodů:", len(results_df)) print("✅ Celkový profit (USD):", results_df['P/L_USD'].sum()) print("📈 Úspěšnost (% ziskových obchodů):", round((results_df['P/L_USD'] > 0).mean() * 100, 2)) # ====== 7. Graf kumulativního profitu ====== plt.figure(figsize=(8,5)) plt.plot(results_df['cum_profit'], marker='o') plt.title("Backtest strategie (BTC/USDT)") plt.xlabel("Obchod") plt.ylabel("Kumulativní profit (USD)") plt.grid(True) plt.show()

crypto free deposit 200usd

import ccxt
import pandas as pd
import pandas_ta as ta
import matplotlib.pyplot as plt
# ====== 1. Připojení k Binance ======
exchange = ccxt.binance()
symbol = 'BTC/USDT'
timeframe = '1h'
limit = 1000 # 1000 hodin = cca 41 dnů
# ====== 2. Stažení historických dat ======
ohlcv = exchange.fetch_ohlcv(symbol, timeframe=timeframe, limit=limit)
df = pd.DataFrame(ohlcv, columns=['timestamp', 'open', 'high', 'low', 'close', 'volume'])
df['timestamp'] = pd.to_datetime(df['timestamp'], unit='ms')
# ====== 3. Výpočet indikátorů ======
df['EMA20'] = ta.ema(df['close'], length=20)
df['EMA50'] = ta.ema(df['close'], length=50)
df['RSI'] = ta.rsi(df['close'], length=14)
# ====== 4. Generování signálů ======
def generate_signal(row):
if row['EMA20'] > row['EMA50'] and row['RSI'] < 30:
return 'BUY'
elif row['EMA20'] < row['EMA50'] and row['RSI'] > 70:
return 'SELL'
else:
return 'HOLD'
df['signal'] = df.apply(generate_signal, axis=1)
# ====== 5. Backtestování strategie ======
capital = 1000 # počáteční kapitál v USD
position = None
entry_price = 0
trade_results = []
stop_loss_pct = 0.02
take_profit_pct = 0.05
capital_per_trade = 200
for i in range(len(df)):
price = df['close'].iloc[i]
signal = df['signal'].iloc[i]
if position is None and signal in ['BUY', 'SELL']:
position = signal
entry_price = price
amount = capital_per_trade / price
elif position == 'BUY':
if price <= entry_price (1 - stop_loss_pct) or price >= entry_price (1 + take_profit_pct):
pl = (price - entry_price) * amount
trade_results.append(pl)
position = None
elif position == 'SELL':
if price >= entry_price (1 + stop_loss_pct) or price <= entry_price (1 - take_profit_pct):
pl = (entry_price - price) * amount
trade_results.append(pl)
position = None
# ====== 6. Výsledky ======
results_df = pd.DataFrame(trade_results, columns=['P/L_USD'])
results_df['cum_profit'] = results_df['P/L_USD'].cumsum()
print("📊 Počet obchodů:", len(results_df))
print("✅ Celkový profit (USD):", results_df['P/L_USD'].sum())
print("📈 Úspěšnost (% ziskových obchodů):", round((results_df['P/L_USD'] > 0).mean() * 100, 2))
# ====== 7. Graf kumulativního profitu ======
plt.figure(figsize=(8,5))
plt.plot(results_df['cum_profit'], marker='o')
plt.title("Backtest strategie (BTC/USDT)")
plt.xlabel("Obchod")
plt.ylabel("Kumulativní profit (USD)")
plt.grid(True)
plt.show()
·
--
Code red packet BPW1SKUVQT
Code red packet
BPW1SKUVQT
Se eliminó el contenido citado
Inicia sesión para explorar más contenidos
Únete a usuarios globales de criptomonedas en Binance Square
⚡️ Obtén información útil y actualizada sobre criptos.
💬 Avalado por el mayor exchange de criptomonedas en el mundo.
👍 Descubre perspectivas reales de creadores verificados.
Email/número de teléfono
Mapa del sitio
Preferencias de cookies
Términos y condiciones de la plataforma