@CoinSonarV2 · Post #1879006 · 18.04.2026 г., 11:44
$ATA | #ATAUSDT | TradingView Price: 0.0104 (-1.0% in 24h) └1 min change: +1.0% 45.4K USDT traded in 1 min └Sells: 41.9K USDT [92%] 🔴 24h Vol: 1.7M USDT (Binance) Alerts in this hour: 1
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #397 · 12 ное.
Использование Pydantic сегодня стало нормой, и это правильно. Но иногда на ревью вижу, что используют его не всегда корректно. Например, метод BaseModel.model_dump() по умолчанию не преобразует стандартные типы, такие как datetime, UUID или Decimal, в простой сериализуемый для JSON вид. Тогда пишут кастмоный сериализатор для этих типов чтобы функция json.dump() не падала с ошибкой. import uuid from datetime import datetime from decimal import Decimal from uuid import UUID from pydantic import BaseModel class MyModel(BaseModel): id: UUID date: datetime value: Decimal obj = MyModel( id=uuid.uuid4(), date=datetime.now(), value='1.23' ) print(obj.model_dump()) # не подходит для json.dump # { # 'id': UUID('4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1'), # 'date': datetime.datetime(2025, 12, 12, 12, 12, 12, 111111), # 'value': Decimal('1.23') # } # добавляем свой кастомный сериализатор json.dumps(obj.model_dump(), cls=MySerializer) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2025-12-12T12:12:12.111111', # 'value': '1.23' # } В данном случае класс MySerializer обрабатывает datetime, UUID и Decimal. Например так: class MySerializer(json.JSONEncoder): def default(self, o): if isinstance(o, Decimal): return str(o) elif isinstance(o, datetime): return o.isoformat() elif isinstance(o, UUID): return str(o) return super().default(o) Специально для тех, кто всё еще так делает - в этом нет необходимости! Pydantic может это сделать сам, просто нужно добавить параметр mode="json". json.dumps(obj.model_dump(mode="json")) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2012-12-12T12:12:12.111111', # 'value': '1.23' # } #pydantic#libs
Пребарај: #atausdt
@CoinSonarV2 · Post #1879006 · 18.04.2026 г., 11:44
$ATA | #ATAUSDT | TradingView Price: 0.0104 (-1.0% in 24h) └1 min change: +1.0% 45.4K USDT traded in 1 min └Sells: 41.9K USDT [92%] 🔴 24h Vol: 1.7M USDT (Binance) Alerts in this hour: 1
Hashtags
@binancefutureofficial · Post #11220 · 12.11.2025 г., 13:07
🚀#ATAUSDT EMAs showing fresh bullish crossover, momentum turning positive from this zone. Price holding strong at support — signs of accumulation before breakout.
Hashtags
@binancefutureofficial · Post #11219 · 12.11.2025 г., 13:00
🔰#ATAUSDT ⏫ BUY : 0.0270-0.0264 👁🗨 Leverage: Cross (10.00X) 📍TARGETS 1) 0.0275 2) 0.0282 3) 0.0290 4) 0.0297 5) 0.0306+ ❌ STOPLOSS: 0.0251
Hashtags
@binancefutureofficial · Post #11103 · 19.10.2025 г., 05:09
#ATAUSDT Trendline breakout confirmed on the 15-minute chart. Price holding well above the breakout zone — looks promising for a bullish move from here. 📈
Hashtags
@binancefutureofficial · Post #11102 · 19.10.2025 г., 05:04
🔰#ATAUSDT ⏫ BUY : 0.0303-0.0296 👁🗨 Leverage: Cross (10.00X) 📍TARGETS 1) 0.0307 2) 0.0311 3) 0.0316 4) 0.0321 5) 0.0330+ ❌ STOPLOSS: 0.0287
Hashtags
@binancefutureofficial · Post #11073 · 10.10.2025 г., 14:36
🔰#ATAUSDT ⏫ BUY : 0.0411-0.0401 👁🗨 Leverage: Cross (10.00X) 📍TARGETS 1) 0.0416 2) 0.0421 3) 0.0428 4) 0.0439 5) 0.0452+ ❌ STOPLOSS: 0.0388
Hashtags
@binancefutureofficial · Post #11015 · 05.10.2025 г., 05:35
🔰#ATAUSDT ⏫ BUY : 0.0421-0.0411 👁🗨 Leverage: Cross (10.00X) 📍TARGETS 1) 0.0428 2) 0.0435 3) 0.0442 4) 0.0451 5) 0.0463+ ❌ STOPLOSS: 0.0400
Hashtags
@binancefutureofficial · Post #10821 · 30.08.2025 г., 11:09
🔰#ATAUSDT ⏫ BUY : 0.0465-0.0453 👁🗨 Leverage: Cross (10.00X) 📍TARGETS 1) 0.0471 2) 0.0475 3) 0.0484 4) 0.0493 5) 0.0505+ ❌ STOPLOSS: 0.0440
Hashtags
@we_want_youu · Post #4196 · 14.08.2024 г., 05:54
Currently, #ATAUSDT is compressed within a falling wedge pattern, a classic bullish reversal signal. Should #ATA fail to bounce back from the $0.0820-$0.0700 support, our eyes will be on the next critical level at $0.0580. Historically, this level has been a stronghold, and the probability of a rebound here is notably higher. But if $ATA breaks below these key support levels, the bears might take control, potentially leading to a bearish continuation.